文章
11
粉丝
70
获赞
0
访问
6.6k
#include <cstdio>
using namespace std;
#include <string.h>
#include <iostream>
#include <stdlib.h>
typedef struct node {
int number;
struct node* next;
}*LinkList,Node;
//遍历链表
void Print(LinkList& L) {
LinkList temp = L;
while (1) {
if (temp->next == L) {
cout << temp->number;
break;
}
cout << temp->number;
temp = temp->next;
}
cout << endl;
}
void Delete(LinkList& pre, LinkList& p) {
LinkList temp = p;
pre->next = p->next;
p = p->next;
 ...
登录后发布评论
暂无评论,来抢沙发