JR-su
JR-su
全部文章
分类
题解(5)
归档
标签
去牛客网
登录
/
注册
JR-su的博客
全部文章
(共6篇)
题解 | #[NOIP2000]单词接龙#
忘记局部变量的回溯了,调了1个小时~ #include <stdio.h> #include <string.h> int num; char input[20][100] = {0}; int hash[20] = {0}; int max_len; int my_st...
C
深度优先搜索
2022-08-02
0
455
题解 | #数组中的最长连续子序列#
并没有用上并查集,很简单的一道题,但是如果是考试模式,容易忽略连续序列里面相等的情况 int cmp(const void *a, const void *b) { int ...
数组
计数排序
C
2022-07-06
0
293
题解 | #火车进站#
同时存在两种可能的情况时,递归实现需要在每一种情况递归出来后,做好回溯处理。 #include <stdio.h> #include <string.h> int N; int train[10] = {0}; int in_train[10] = {0}; int out...
C
递归
2022-03-28
6
790
题解 | #尼科彻斯定理#
#include <stdio.h> int main(void) { int data, start; int i; scanf("%d", &data); if (data % 2) { start = d...
C
数学
2022-03-27
0
249
题解 | #成绩排序#
#include <stdio.h> struct student { char name[100]; int core; }; int sort; int compare(void *a, void *b) { struct student *c = (s...
C
计数排序
2022-03-26
0
382
题解 | #坐标移动#
提供一种新思路,利用atoi,实现字符串有效判断以及转换。 #include <stdio.h> #include <string.h> int main(void) { char str[10001] = {0}; char tmp[1000] = {0}...
C
2022-03-12
1
310