牛客835595521号
牛客835595521号
全部文章
分类
题解(10)
归档
标签
去牛客网
登录
/
注册
牛客835595521号的博客
全部文章
(共7篇)
题解 | #公共子串计算#
从两个字符串找到相同的字母,然后比较下一个字母是否相同,取相同数最多一段。 #include"stdio.h" #include"string.h" int fun(char* str_1, int len_1, char* st...
C
字符串
数组
2022-05-05
0
294
题解 | #参数解析#
纯字符串操作,重点在于用0替换空格和‘\”’。 #include"stdio.h" #include"string.h" int main(void) { int i, num = 0,...
C
数组
字符串
2022-05-04
6
605
题解 | #记票统计#
用scanf函数处理输入,投票的时候每投入一张票,和候选人匹配,统计结果,这样的好处是可以无视投票者的数量,只需要给候选人分配空间。 #include "stdio.h" #include "string.h" char in_put[100][30]&n...
C
数组
字符串
2022-05-03
0
360
题解 | #密码强度等级#
根据描述写代码就可以,注意细节 #include "stdio.h" #include "string.h" int flag_1_1 = 0, flag_1_2 = 0; int flag_2_1&...
C
字符串
2022-05-03
0
391
题解 | #整数与IP地址间的转换#
ip转整数,可以自己写个函数根据“.”分割,也可以直接用scanf函数。 然后用c语言的移位运算就很简单了。 #include "stdio.h" #include "string.h" unsigned int ip_to_uint(char*&...
C
字符串
2022-05-01
0
371
题解 | #字符串加解密#
根据描述敲代码就可以了,没什么难度。 #include"stdio.h" #include"string.h" char str_1[1001] = { 0 }; char str_2[1001] = { ...
C
字符串
2022-05-01
0
416
题解 | #字符串排序#
非字母的字符串排序后还是在原来的位置,所以先把字母全部提取出来排序,然后非字母的直接打印, 字母按新排序的打印。 #include"stdio.h" #include"string.h" char str[1001] = { 0 }; c...
C
数组
字符串
2022-04-30
0
350