顺序表
摘要:#include <iostream>using namespace std;const int INITLENGTH = 10;const int INCREMENT = 10;const int INVALIDDATA = 100;struct Node{ int* data; int length; int size;};struct Equal{ bool operator()...
阅读全文
posted @
2010-10-21 23:14
BeyondTechnology
阅读(327)
推荐(0) 编辑