Python_zhang
Python_zhang
全部文章
分类
题解(93)
归档
标签
去牛客网
登录
/
注册
Python_zhang的博客
全部文章
(共84篇)
题解 | #记票统计#
#include <stdio.h> #include <string.h> //名字可以再长一点,手动狗头 int main() { int n; while (scanf("%d", &n) != EOF) { char name[n][100...
C
2022-02-08
0
341
题解 | #24点运算#不说精简,但很优美
#include <stdio.h> #include <string.h> //将读入字符转换为数字存储,判断是否有王 //DFS回溯遍历,剪枝函数 约束 used 限界 pos //确定总的DFS深度 pos 4 每个深度上的分叉数+-*/,pos==0一定是+; //...
C
2022-02-08
0
526
题解 | #数组分组#
#include <stdio.h> //sum3 sum5 target = sum/2-sum3 问剩下的数是否可以存在和为 //回溯遍历rest_num 的和 用set数组辅助 int flag; void find_target(int rest_num[], int set[...
C
2022-02-07
1
460
题解 | #在字符串中找出连续最长的数字串#
#include <stdio.h> #include <string.h> //获取所有数字子串及其长度并存储 int main() { char str[200]; while (scanf("%s", str) != EOF) { int str...
C
2022-02-07
0
535
题解 | #字符串字符匹配#
#include <stdio.h> #include <string.h> //暴力遍历 //用简单哈希表,字符一共128个对应ASCII 0-127 int main() { char s[201], t[201]; while (scanf("%s", s) ...
C
2022-02-07
2
430
题解 | #整型数组合并#
#include <stdio.h> #include <string.h> #include <stdlib.h> //读取元素后按照升序无重合并 int cmp_int(const void *a, const void *b); int main() { ...
C
2022-02-07
1
498
题解 | #火车进站#
#include <stdio.h> #include <string.h> #include <stdlib.h> char list[6000][10]; //出站 int stack[10]; //车站 int train[10]; ...
C
2022-02-07
2
511
题解 | #火车进站#
#include <stdio.h> #include <string.h> int kind = 0; void DFS(int stack[], int list[][10], int train[], int n, int index, int pos, int top...
C
2022-02-07
0
612
题解 | #HJ51 输出单向链表中倒数第k个结点#
#include <stdio.h> #include <string.h> #include <stdlib.h> //注意链表的定义语句 //next处要用struct ListNode*因为ListNode方法还没有定义 //链表的写入 head tail...
C
2022-02-06
6
1038
题解 | #学英语#
#include <stdio.h> #include <string.h> void transform_three_num(int n); int main() { int n; while(scanf("%d",&n)!=EOF){ int a,b,c; ...
C
2022-02-04
3
516
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页