爱交友的马后炮炮手在创作
爱交友的马后炮炮手在创作
全部文章
分类
归档
标签
去牛客网
登录
/
注册
爱交友的马后炮炮手在创作的博客
全部文章
(共28篇)
题解 | #a+b#
#include <stdio.h> #include <string.h> int main() { char a[1000] = {0}; char b[1000] = {0}; int A[1000] = {0}; int B[1000]...
2024-03-02
0
172
题解 | #字符串连接#
#include <stdio.h> int main() { char a[100];char b[100];char c[200]; while(scanf("%s %s",&a,&b)!=EOF){ int i=...
2024-03-02
0
169
题解 | #二叉排序树#
#define _CRT_SECURE_NO_WARNINGS 1 #include <stdio.h> #include <stdlib.h> typedef struct tree { int a; struct tree* lchild; str...
2024-03-01
0
162
题解 | #统计单词#
#include <stdio.h> int main() { //char a[1000]={0}; char temp; int temp1=0; int length=0; int inta[100]={0}; while(1){ ...
2024-03-01
0
184
题解 | #矩阵转置#
#include <stdio.h> int main() { int n; scanf("%d",&n); int a[100][100]; int temp; int temp1; for(int i=0;...
2024-03-01
0
148
题解 | #合并两个排序的链表#
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : val(x), next(nullptr) {} * }; */ class Solution { public: ...
2024-01-25
0
150
题解 | #链表中的节点每k个一组翻转#
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : val(x), next(nullptr) {} * }; */ class Solution { public: /*...
2024-01-25
0
165
题解 | #链表内指定区间反转#
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : val(x), next(nullptr) {} * }; */ class Solution { public: /*...
2024-01-24
0
161
首页
上一页
1
2
3
下一页
末页