会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Lilideng
博客园
首页
新随笔
联系
订阅
管理
1
2
3
4
5
···
10
下一页
2020年7月16日
安装iperf3
摘要: iperf3_version=3.2iperf3_url=https://github.com/esnet/iperf/archive/$iperf3_version.tar.gzwget $iperf3_urltar xf $iperf3_version.tar.gzpushd iperf-$ip
阅读全文
posted @ 2020-07-16 23:17 Lilideng
阅读(943)
评论(0)
推荐(0)
2019年8月2日
单链表的反转-递归
摘要: #include <stdio.h> typedef struct { int data; struct Node* next; }Node; Node* CreateNewNode(int value) { Node *temp = (Node*)malloc(sizeof(Node)); tem
阅读全文
posted @ 2019-08-02 21:21 Lilideng
阅读(342)
评论(0)
推荐(0)
链表的反转-非递归
摘要: #include <stdio.h> typedef struct{ int data; struct Node* next; }Node; Node* CreateNode(int value) { Node* temp = (Node*)malloc(sizeof(Node)); temp->d
阅读全文
posted @ 2019-08-02 20:50 Lilideng
阅读(167)
评论(0)
推荐(0)
2019年8月1日
利用链表计算两个数字之和
摘要: #include <stdio.h>typedef struct { int data; struct Node* next;}Node; Node* CreateNode(int value) { Node* temp = (Node*)malloc(sizeof(Node)); temp->da
阅读全文
posted @ 2019-08-01 10:55 Lilideng
阅读(412)
评论(0)
推荐(0)
2019年7月31日
链表的建立
摘要: Results Initialize Linked List from end...1 -> 2 -> 3 -> 4 -> 5 -> NULLInitialize Linked List from head...5 -> 4 -> 3 -> 2 -> 1 -> NULL
阅读全文
posted @ 2019-07-31 22:24 Lilideng
阅读(190)
评论(0)
推荐(0)
2019年7月28日
LinkedList Stack
摘要:
阅读全文
posted @ 2019-07-28 15:54 Lilideng
阅读(153)
评论(0)
推荐(0)
2019年7月19日
计算数字中1个个数
摘要:
阅读全文
posted @ 2019-07-19 13:04 Lilideng
阅读(243)
评论(0)
推荐(0)
2019年7月18日
Array Stack Implement using C
摘要:
阅读全文
posted @ 2019-07-18 17:53 Lilideng
阅读(99)
评论(0)
推荐(0)
Linux_Comand - Check disk space
摘要: df -h du -sh Delete folder older than 30 days find /path -name "test-*" -type d -mtime +30 -exec rm -rf {} \;
阅读全文
posted @ 2019-07-18 17:24 Lilideng
阅读(496)
评论(0)
推荐(0)
HyperV - glossary
摘要: Root Partition - sometimes called partition. Manages machine-level functions such as device drivers, power management, and device host addition/remova
阅读全文
posted @ 2019-07-18 15:58 Lilideng
阅读(131)
评论(0)
推荐(0)
1
2
3
4
5
···
10
下一页
公告