云野百川
云野百川
全部文章
分类
归档
标签
去牛客网
登录
/
注册
云野百川的博客
全部文章
(共45篇)
题解 | #牛牛的链表添加节点#
#include <stdio.h> #include <stdlib.h> typedef struct ListNode { int data; struct ListNode* next; }ListNode; ListNode* Creat_lis...
2024-03-16
0
162
题解 | #牛牛的链表删除#
#include <stdio.h> #include <stdlib.h> typedef struct ListNode { int data; struct ListNode* next; }ListNode; ListNode* Creat_lis...
2024-03-16
0
155
题解 | #牛牛的单向链表#
#include <stdio.h> #include <stdlib.h> typedef struct ListNode { int data; struct ListNode *next; }ListNode; ListNode* creat_Nod...
2024-03-16
0
164
题解 | #牛牛的链表交换#
#include <stdio.h> #include <stdlib.h> typedef struct ListNode { int data; struct ListNode* next; }ListNode; ListNode* creat_lis...
2024-03-16
0
191
题解 | #获取字符串长度#
#include <iostream> using namespace std; int Count(char *str) { char *p = str; while(*p != '\0') p++; int count = p - str; ...
2024-02-25
0
133
题解 | #翻转金字塔图案#
#include <stdio.h> int main() { int a = 0; while(scanf("%d",&a) != EOF) { for(int i = a;i >= 1;i--) ...
2024-02-05
0
142
题解 | #金字塔图案#
#include <stdio.h> int main() { int a = 0; while(scanf("%d",&a) != EOF) { for(int i = 1;i <= a;i++) ...
2024-02-05
0
259
题解 | #带空格直角三角形图案#
#include <stdio.h> int main() { int a = 0; while(scanf("%d",&a) != EOF) { for(int i = 0;i < a;i++) ...
2024-02-05
0
122
题解 | #翻转直角三角形图案#
#include <stdio.h> int main() { int a = 0; while(scanf("%d",&a) != EOF) { for(int i = 0;i < a;i++) ...
2024-02-04
0
108
题解 | #反向输出一个四位数#
#include <stdio.h> int main() { int n = 0; scanf("%d",&n); while(n) { printf("%d",n % 10); n /=...
2024-01-25
0
125
首页
上一页
1
2
3
4
5
下一页
末页