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