Python_zhang
Python_zhang
全部文章
分类
题解(93)
归档
标签
去牛客网
登录
/
注册
Python_zhang的博客
全部文章
(共93篇)
题解 | #坐标移动#
#include <stdio.h> #include <string.h> // 多行注释 ctrl+/ /*char *token token = strtok(str, 分割符); while( token != NULL ) { printf( "%...
C
2022-01-07
0
421
题解 | #购物单#
#include <stdio.h> #include <string.h> //动态规划 f(n) =Q [f(n-1) f(n-2)..] //新的优化结果可以由过去的结果结合确定的策略得到 //0-1背包问题 包称重W 物品W(i) V(i) //dp[3][4] ...
C
2022-01-07
0
500
题解 | #句子逆序#
#include <stdio.h> #include <string.h> /*typedef struct Student {int a; }Stu; 这里的Stu实际上就是struct Student的别名。Stu==struct Student 声...
C
2022-01-06
0
410
题解 | #求int型正整数在内存中存储时1的个数#
#include <stdio.h> #include <string.h> //N =a[0]2^0+a[1]2^1 +...a[n]2^n //N%2 == 1 ->a[0]=1 N/=2 ==1 -- 例如10 0,5 1,2 0,1 15 1,7 1,3...
C
2022-01-04
8
847
题解 | #字符串排序#
#include <stdio.h> #include <string.h> //字典顺序排列(AaBb - Zz,0-9顺序) //冒泡排序 str flag strcmp //strcmp ASCII顺序比较 //strcmp()首先将s1 第一个字符值减去s2 第一...
C
2022-01-04
22
3130
题解 | #字符串反转#
#include <stdio.h> #include <string.h> //traverse strlen int main() { char str[1001]; int len; scanf("%s",str); len = strlen(str);...
C
2022-01-04
0
367
题解 | #字符个数统计#
#include <stdio.h> #include <string.h> //num num%10 num/10 int main() { int num; scanf("%d",&num); do{ printf("%c",num%10+'0...
C
2022-01-04
0
314
题解 | #字符个数统计#
#include <stdio.h> #include <string.h> //gets str suan strlen //traverse str push AS i++ //换行表示结束符,不算在字符里 //scanf("%[^\n]", str); int ...
C
2022-01-04
0
347
题解 | #提取不重复的整数#
#include<stdio.h> //num[20] size -1 flag N //N%10 and != 去重 push num int main(){ int num[20],size=-1,flag,N; int t; scanf("%d",...
C
2022-01-04
0
326
题解 | #取近似值#
#include <stdio.h> #include <string.h> // c取int会取整,所以+0.5小数<0.5还是取整 小数>=0.5会取整+1 //要点 强制类型转换(int)(num) int main() { float num; scanf...
C
2022-01-03
2
473
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页