Python_zhang
Python_zhang
全部文章
分类
题解(93)
归档
标签
去牛客网
登录
/
注册
Python_zhang的博客
全部文章
(共84篇)
题解 | #四则运算#
#include <stdio.h> #include <string.h> // 1.无括号 用栈先乘除后加减 // 遇到+-继续入栈,遇到*/出栈1个,和新元素计算后入栈 // 2.有括号 左括号开始递归1步骤,右括号出递归结果 入栈 //注意遇到括号内有负号先要变号再...
C
2022-01-14
38
1960
题解 | #统计每个月兔子的总数#
#include <stdio.h> #include <string.h> //斐波那契递归 int f(int n); int main() { int n; while ((scanf("%d", &n)) != EOF) pri...
C
2022-01-14
0
319
题解 | #蛇形矩阵#
#include <stdio.h> #include <string.h> int main() { int s[100][100] = {0}; //观察到分为 i = 1 2 3 4 5 五组 //用j遍历这五组 num++ 记录当前数值 ...
C
2022-01-14
0
424
题解 | #输入整型数组和排序标识,对其元素按照升序或降序进行排序#
#include <stdio.h> #include <string.h> //注意选择排序 // int minindex;int temp; //i=0;i<n-1 j=i+1;j<n int main() { int n; scanf("...
C
2022-01-14
0
425
题解 | #单词倒排#
#include <stdio.h> #include <string.h> //c = getchar() // int main(){ char c; char word[100][22]={'\0'}; int num=0,top=0; while((c ...
C
2022-01-13
7
349
题解 | #字符串排序#
#include <stdio.h> #include <string.h> typedef struct chInfo { int order; char c; int value; } chInfo; //其实可以取出来原位置记为空 再排序后填入...
C
2022-01-13
1
471
题解 | #合唱队#
#include <stdio.h> #include <string.h> #include <stdlib.h> //全是坑 // 给数组A(0-index),B // 给B排序去重 // 遍历B,对每个值,找A中十进制表示中包含该值的下标,和A中的那个...
C
2022-01-13
0
566
题解 | #删除字符串中出现次数最少的字符#
#include <stdio.h> #include <string.h> // int count 26 //str 逐字符读入数组 str[i]-'a' //count = min count=0; // int main(){ int count[26]={0}...
C
2022-01-11
5
382
题解 | #简单密码#
#include <stdio.h> #include <string.h> #include <stdlib.h> // 大写变小写向后移一位 x+'a'-'A'-1 Z单独 // 小写变数字 //注意判等 == int main(){ char let...
C
2022-01-11
0
416
题解 | #简单错误记录#
#include <stdio.h> #include <string.h> #include <stdlib.h> //读取错误记录存入mistake[] 记录数量 //新的记录比较 相同++;不同增加记录 栈 typedef struct mistak...
C
2022-01-09
0
402
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页