c链表操作
链表的建立及各种链表操作 void GetHead();//Returns the head element of the list void GetTail();//Returns the tail element of the list void RemoveHead();//Removes the element from the head of the list void RemoveTail();//Removes the element from the tail of the list void AddHead(int m);//Adds an element to
用户评论