来泡池子了的西红柿很奔放
来泡池子了的西红柿很奔放
全部文章
分类
归档
标签
去牛客网
登录
/
注册
来泡池子了的西红柿很奔放的博客
全部文章
(共204篇)
题解 | #找出字符串中第一个只出现一次的字符#
#include <stdio.h> int main() { char input[1001]; while (scanf("%s", input) != EOF) { int freq[26] = {0}; fo...
2024-11-04
0
11
题解 | #输入n个整数,输出其中最小的k个#
#include <stdio.h> #include <stdlib.h> int compare(const void* a, const void* b) { const int* inta = (const int*)a; const int* int...
2024-11-04
0
10
题解 | #高精度整数加法#
#include <stdio.h> #include <stdlib.h> #include <string.h> #define MAX_LEN 10001 void add(char* str1, char* str2) { int len1 = ...
2024-11-04
0
11
题解 | #完全数计算#
#include <stdio.h> #include <stdbool.h> bool perfect(int n) { int f[10000]; int i_f = 1; f[0] = 1; for(int i = 2; i * i < n; i++) { ...
2024-11-04
0
15
题解 | #挑7#
#include <stdio.h> int main() { int n; while (scanf("%d", &n) != EOF) { int count = 0; for(int i = 7; i &...
2024-11-04
0
14
题解 | #杨辉三角的变形#
#include <stdio.h> int main() { int n; scanf("%d", &n); if(n == 1 || n == 2) printf("-1\n"); else if(n ...
2024-11-04
0
14
题解 | #计算字符串的编辑距离#
#include <stdio.h> #include <string.h> // 计算距离的函数 int editDistance(char *str1, char *str2) { // 测量两个字符串的长度 int len1 = strlen(str1...
2024-11-03
0
14
题解 | #输出单向链表中倒数第k个结点#
#include <stdio.h> #include <stdlib.h> typedef struct ListNode { int m_nKey; struct ListNode* m_pNext; } LST; int main() { in...
2024-11-03
0
22
题解 | #四则运算#
#include <stdio.h> #include <string.h> #include <ctype.h> int i = 0; int calculate(char* a) { int len = strlen(a); int sta...
2024-11-03
0
14
题解 | #从单向链表中删除指定值的节点#
#include <stdio.h> #include <stdlib.h> typedef struct linkedList { int val; struct linkedList *next; } Node; void insertNode(Nod...
2024-11-03
0
17
首页
上一页
12
13
14
15
16
17
18
19
20
21
下一页
末页