不使用string.h头文件计算字符长度 摘要:#include<stdio.h> #include<math.h> int main(void) { int num, count=0; scanf_s("%d", &num); …… 文章列表 2022年11月03日 0 点赞 0 评论 91 浏览 评分:9.9
幸运儿的单链表算法 摘要:#include<stdio.h>#include<malloc.h>#define MAX 50typedef struct test { struct test* next; int …… 文章列表 2022年11月06日 0 点赞 0 评论 190 浏览 评分:9.9
大数斐波那契数列 摘要:原题为洛谷p2437利用string的加法特性f[i]=f[i-1]+f[i-2]#include<bits/stdc++.h> using namespace std; string fb[10…… 文章列表 2022年11月12日 0 点赞 0 评论 126 浏览 评分:9.9
c语言文件操作 摘要:#include<stdio.h> #include<stdlib.h> #include<string.h> //交换字母的代码 void swap(char *s,int i,int j…… 文章列表 2022年11月19日 0 点赞 0 评论 61 浏览 评分:9.9
删除链表中指定的值 摘要:/* 写一个函数del,用来删除动态链表中指定的节点 */ #include<stdio.h> #include<stdlib.h> typedef struct LNod…… 文章列表 2022年11月22日 0 点赞 2 评论 36 浏览 评分:9.9
向链表插入数据 摘要:/* 写一个函数insert,用来向一个动态链表插入结点 */ #include<stdio.h> #include<stdlib.h> typedef struct LN…… 文章列表 2022年11月22日 0 点赞 1 评论 38 浏览 评分:9.9
链表增删改查 摘要:#include <stdio.h> #include <stdlib.h> #define COUNT 5 typedef struct LNode { int num; struc…… 文章列表 2022年11月22日 0 点赞 1 评论 57 浏览 评分:9.9
笔记:自定义函数之字符提取 题目1033 摘要:```c #include #include void trs(char c[]) { char a[100]; int len=strlen(c); int t=0; for…… 文章列表 2022年12月03日 0 点赞 0 评论 83 浏览 评分:9.9
2到36进制转换(整数) 摘要:10进制转n进制: ```cpp void system_10_n(int num, int n) {//短除法 stack s;//定义栈 while (num > 0) {//定义…… 文章列表 2022年12月07日 0 点赞 0 评论 110 浏览 评分:9.9