标签:基本算法 cli col lis insert struct pos 释放空间 stat
C++ 静态链表基本算法实现
#ifndef StaticLinkList_h #define StaticLinkList_h const int MAXSIZE = 100; template <class T> struct StaticNode{ T data; int next; }; template <class T> class StaticLinkList{ public: StaticLinkList(); StaticLinkList(T a[], int n); void Insert(int i, T a); T Delete(int i); int Get(int n); int Locate(T x); int NewNode(); void DeleteNode(int i); private: int front; int tail; StaticNode<T> SArray[MAXSIZE]; } template <class T> StaticLinkList<T>:: StaticLinkList(){ for(int i = 0;i<MAXSIZE-1;i++){ SArray[i].next = i+1; } SArray[MAXSIZE-1].next = -1; front = -1; tail = 0; } template <class T> StaticLinkList<T>:: StaticLinkList(T a[], int n){ if(n>MAXSIZE) throw "溢出"; for(int i=0;i<MAXSIZE-1;i++){ SArray[i].next = i+1; } SArray[MAXSIZE-1].next = -1; for(int i = 0;i<n-1;i++){ SArray[i] = a[i]; } front = 0; tail = SArray[n-1].next; SArray[n-1].next = -1; } template <class T> int StaticLinkList<T>::NewNode(){ if(-1 == tail) throw"空间不足"; int pos = tail; tail = SArray[tail].next; return pos; } template <class T> T StaticLinkList<T>::Delete(int i){ if(i<0 || i>MAXSIZE -1){ throw "释放空间错误";} if(front == i) front = SArray[i].next; SArray[i].next = tail; tail = i; } #endif /* StaticLinkList_h */
标签:基本算法 cli col lis insert struct pos 释放空间 stat
原文地址:https://www.cnblogs.com/ycbeginner/p/10006373.html