花儿无缺
花儿无缺
全部文章
分类
题解(12)
归档
标签
去牛客网
登录
/
注册
花儿无缺的博客
全部文章
(共13篇)
题解 | #字符串排序#提供一个冒泡排序的解法吧,C
#include <stdio.h> #include <string.h> #define SIZE 1005 int JudgeSequence(char a, char b) { &nbs...
C
2022-09-24
0
376
题解 | #名字的漂亮度#
#include <stdio.h> #include <string.h> #include <stdlib.h> #define Maxsize 10005 int myCompare(const...
C
2022-03-13
0
410
题解 | #查找两个字符串a,b中的最长公共子串#
#include <stdio.h> #include <string.h> #include <stdlib.h> int main() { char str1[...
C
2022-03-13
0
389
题解 | #求解立方根#
二分 #include <stdio.h> float getValWhenMore0(float left, float right, float val) { ...
C
二分
2022-03-06
0
422
题解 | #归并排序#
qsort #include <stdio.h> #include <stdlib.h> #include <string.h> typedef struct{ int&...
C
qsort
2022-03-06
8
466
题解 | #归并排序#
C的解法: #include <stdio.h> #include <stdlib.h> #include <string.h> typedef struct{ int num; char k; &nb...
C
2021-11-15
0
494
题解 | #在字符串中找出连续最长的数字串#
C语言解法 #include <stdio.h> #include <string.h> #include <stdlib.h> #define SIZE 205 typedef struct{ char *pa; &nb...
C
2021-11-14
0
494
题解 | #找出指定数在数组中的范围#
二分法查找 #include <stdio.h> #include <stdlib.h> int main() { int n,tar; w...
C
2021-10-31
0
530
题解 | #字符串合并处理#
🙃🙃🙃🙃🙃🙃 #include <stdio.h> #include <string.h> #include <stdlib.h> struct StrL { ch...
C
2021-10-10
0
478
题解 | #数据分类处理#
就是运行时间比较长,唉。。。 #include <stdio.h> #include <stdlib.h> #include <string.h> int i,j; long int temp; /*删除...
C
2021-10-09
3
575
首页
上一页
1
2
下一页
末页