05 2024 档案

摘要:问题原因:switch中case里面的局部变量出错 解决方法:将case里面定义的局部变量在switch外面定义。 //报错情况 switch (fork()) { case -1: error(1, errno, "fork"); case 0: // 子进程执行命令 if (execvp(arg 阅读全文
posted @ 2024-05-25 10:36 Uiney 阅读(157) 评论(0) 推荐(0) 编辑
摘要:sudo apt install nettools sudo apt update sudo apt install net-tools sudo apt install ssh sudo apt install gcc g++ gdb vim git //顺带安装编译器 阅读全文
posted @ 2024-05-24 20:49 Uiney 阅读(4) 评论(0) 推荐(0) 编辑
摘要:#include<stdio.h> #include<stdlib.h> typedef int E; typedef struct node { E val; struct node* next; }ListNode; ListNode* list_creat() { ListNode* list 阅读全文
posted @ 2024-05-10 23:03 Uiney 阅读(12) 评论(0) 推荐(0) 编辑
摘要:#include<stdio.h> #include <stdlib.h> #include<stdbool.h> typedef int E; typedef struct node { E data; struct node* next; } Node; typedef struct { Nod 阅读全文
posted @ 2024-05-03 20:42 Uiney 阅读(7) 评论(0) 推荐(0) 编辑
摘要:#include<stdio.h> #include <stdlib.h> #define PREALLOC_MAX 1024 #define DEFAULT_CAPACITY 8 typedef int E; typedef struct { E* elements; // 指向堆空间的数组 in 阅读全文
posted @ 2024-05-02 20:54 Uiney 阅读(11) 评论(0) 推荐(0) 编辑