C++链表的简单实现 2020-11-24 10:12 | Jan | C/C++,数据结构 | 57 | 0 缘由 本人C++菜鸟一枚,打算一边复习数据结构、算法,一边学习C++。That's All! 下面是C++链表的一个简单实现。 /*链表的增删改查*/ #include <iostream> #include <string.h> using namespace std; #define LEN (16) #define B… c/c++Linux数据结构