对于单向链表的排序与去重
#include "bits/stdc++.h"
using namespace std;
struct node {
int num;
node* next;
};
class Chain
{
public:
Chain()
{
head=tail=new node;
}
void GetElement(int ele)//单个元素补充
{
tail->num=ele;
tail->next=new node;
tail=tail->next;
}
void GetChain(int num)//知长度输入
{
int k;cin>>k;
while (num--)
{
GetElemen
对于单向链表的排序与去重最先出现在Python成神之路。
共有 0 条评论