Python_zhang
Python_zhang
全部文章
题解
归档
标签
去牛客网
登录
/
注册
Python_zhang的博客
全部文章
/ 题解
(共84篇)
题解 | #称砝码#
#include <stdio.h> #include <string.h> //遍历添加砝码,一种类似桶排序的思想 int main() { //暴力遍历 int n; while (scanf("%d", &n) != EOF) { int...
C
2022-02-04
11
1616
题解 | #判断两个IP是否属于同一子网#
#include <stdio.h> #include <string.h> int main() { //get str; int mask[4]; int ip1[4], ip2[4]; while (scanf("%d.%d.%d.%d", mask,...
C
2022-02-02
0
323
题解 | #密码截取#
#include <stdio.h> #include <string.h> //颠倒后比较最长字段 XXX //中心遍历 //增加遍历指针low high是遍历更加简洁 int main() { char str[3000]; scanf("%s", st...
C
2022-01-29
23
1187
题解 | #字符串合并处理#
#include <stdio.h> #include <string.h> //读取,选择排序 //字典序列 //需要注意题目中用例会出现非A-F字母,原样输出即可 int main() { char str1[101]; char str2[101]; ...
C
2022-01-29
10
952
题解 | #字符串加解密#
#include <stdio.h> #include <string.h> char insecret(char x); char unsecret(char x); int main() { char willsecret[10001]; char ha...
C
2022-01-29
0
449
题解 | #求解立方根#
#include <stdio.h> #include <string.h> #include <math.h> // 或者牛顿法迭代 键入值为y // 令 fx = x^3-y // xk+1= xk - f(xk)/f'(xk)=xk - (xk^3-y)...
C
2022-01-28
0
329
题解 | #求解立方根#
#include <stdio.h> #include <string.h> #include <math.h> // double 型 //二分法 // 浮点数判断0一般是和espi=0.000001比较 // 0-y // x=y/2.0 // 判断大小? /...
C
2022-01-28
3
558
题解 | #Redraiment的走法#
#include <stdio.h> #include <string.h> //一组数 //从任意地点开始 只能从前往后 只能从低到高 // fn fn-1 n-1 比n < n 那么 ++ n-1比n大 找到一个比n-1大的++ // n-1 第n-...
C
2022-01-28
1
367
题解 | #字符统计#
#include <stdio.h> #include <string.h> // a-z // a-a+10 // 0-9 // 10-35 // 只会出现整数次 //统计最大值后降序输出 max-1 int main() { char str[1001] =...
C
2022-01-28
0
415
题解 | #表示数字#
#include <stdio.h> #include <string.h> //读取数字,读到后进入读数字循环 int main() { char str[101]; while (scanf("%s", str) != EOF) { ...
C
2022-01-27
11
557
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页