4thirteen2one
4thirteen2one
全部文章
题解
归档
标签
去牛客网
登录
/
注册
4thirteen2one的博客
全部文章
/ 题解
(共23篇)
题解 | #AB8 【模板】循环队列#
C语言版本 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <stdbool.h> typedef struct tQueue { int *data, ...
C
队列
2022-05-30
1
449
题解 | #HJ108 求最小公倍数#
C语言版本 #include <stdio.h> int gcd(int a, int b) { return (b==0)? a: gcd(b, a%b); } int lcm(int a, int b) { return a*b/gcd(a,b); } int ...
C
2022-05-27
0
823
题解 | #HJ14 字符串排序#
Python版本 n = int(input()) string_list = [] for i in range(n): string_list.append(input()) string_list.sort() for string in string_list: prin...
C
Python3
2022-05-25
8
1832
题解 | #NC61 两数之和#
C语言版本 【暴力遍历+边界过滤】 /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param numbers int整型一维数组 * @param numbersLen int numbers数组长度 * @param target in...
C
Python3
哈希表
2022-05-24
0
1860
题解 | #CC7 牛牛的单向链表#
#include <stdio.h> #include <stdlib.h> struct LinkNode { int value; struct LinkNode *next; }; int main() { int n; scanf(...
C
2022-05-03
3
742
题解 | #HJ102 字符统计#
C语言版本 #include <stdio.h> #include <string.h> int main() { char string[1001]; scanf("%s", string); int length = strlen(string)...
C
Python3
2022-04-28
3
869
题解 | #HJ106 字符串逆序#
C语言版本 #include <stdio.h> #include <string.h> int main() { char content[10001]; int length; scanf("%[^\n]", content, &leng...
C
Python3
2022-04-17
1
1075
题解 | #HJ8 合并表记录#
Python 版本 n = int(input()) table = {} for i in range(n): k, v = map(int, input().split(' ')) if k in table: table[k] += v else: ...
Python3
C
2022-04-17
10
2568
题解 | #HJ17 坐标移动#
Python+正则表达式 import re s = input() mvs = [mv for mv in s.split(';') if re.match(r"^([AWSD]\d{1,2})?$", mv)] x, y = 0, 0 for mv in mvs: if mv: ...
Python3
C
2022-04-17
0
285
题解 | #HJ46 截取字符串#
C语言版本 思路:调用 string.h 中的 strncpy #include <stdio.h> #include <string.h> int main() { char string[1000]; scanf("%s", string); i...
C
Python3
2022-04-17
9
1107
首页
上一页
1
2
3
下一页
末页