数据结构代码的C实现以便以后参考,复习 #include <stdlib.h> #define INIT_SIZE 5 #define INCREMENT 10 #define ElemType int //链表结构体 typedef struct { ...
Continue reading这是一个很久以前遗留下的一个问题,一直不知道n为什么等于100,今天看见了就把它解决一下. #include "iostream" using namespace std; int n; int f() { n+=2; return n; } int m...
Continue reading