diff --git a/2022王道考研系列复习指导书更新及勘误.md b/2022王道考研系列复习指导书更新及勘误.md new file mode 100644 index 0000000..2e4af82 --- /dev/null +++ b/2022王道考研系列复习指导书更新及勘误.md @@ -0,0 +1,14 @@ +# 2022 王道考研系列复习指导书更新及勘误 + +## 2022 王道考研系列复习指导书改动明细 + + + +PS:改动不大的地方未列出 + +## 2022 考研王道系列图书勘误 + + + + + diff --git a/3 栈和队列/LinkQueue.cpp b/3 栈和队列/LinkQueue.cpp new file mode 100644 index 0000000..33c381a --- /dev/null +++ b/3 栈和队列/LinkQueue.cpp @@ -0,0 +1,11 @@ +#include +using namespace std; + +struct LinkNode { + ElemType data; + struct LinkNode *next; +}; // 链式队列节点 + +struct LinkQueue { + LinkNode *front, *rear; // 链式队列指针 +}; // 链式队列 diff --git a/assets/2022王道考研系列复习指导书改动明细.png b/assets/2022王道考研系列复习指导书改动明细.png new file mode 100644 index 0000000..843d08e Binary files /dev/null and b/assets/2022王道考研系列复习指导书改动明细.png differ diff --git a/assets/王道系列图书22操作系统勘误.png b/assets/王道系列图书22操作系统勘误.png new file mode 100644 index 0000000..39ae83c Binary files /dev/null and b/assets/王道系列图书22操作系统勘误.png differ diff --git a/assets/王道系列图书22数据结构勘误.png b/assets/王道系列图书22数据结构勘误.png new file mode 100644 index 0000000..f2bb4f0 Binary files /dev/null and b/assets/王道系列图书22数据结构勘误.png differ diff --git a/assets/王道系列图书22计算机组成原理勘误.png b/assets/王道系列图书22计算机组成原理勘误.png new file mode 100644 index 0000000..6508550 Binary files /dev/null and b/assets/王道系列图书22计算机组成原理勘误.png differ diff --git a/assets/王道系列图书22计算机网络勘误.png b/assets/王道系列图书22计算机网络勘误.png new file mode 100644 index 0000000..dae9228 Binary files /dev/null and b/assets/王道系列图书22计算机网络勘误.png differ