//2.11设计算法以删除链表中所有值为x的元素结点。
#include <iostream>
#include<stdlib.h>
using namespace std;
#define max 100
typedef int element;
typedef struct sNode {
element data ;
struct sNode* next;
}node,*linkList ;
void initialList(node*&L ) {
L = new node;
L->next = NULL;
}
bool listDelete(node* L, element x=0) {
node* u;
node* p = L;//指向头结点
while (p->next->data != x && p != NULL) {
p = p->next;
}
if (p == NULL || p->next == NULL)
return false;
else {
u = p->next;
p->next = u->next;
delete u;
return true;
}
}
void listAdd(node* L) {
element x=0;
node* u, *R;
L = new node;
L->next = NULL;
R = L;
cout << "输入链表第一个元素(输入9999退出):";
cin >> x;
while (x != 9999) {
u = new node;
u->data = x;
u->next = NULL;
R->next = u;
R = u;
cout << "输入链表下一个元素(输入9999退出):";
cin >> x;
}
}
void listPrint(node* L) {
node* p = L;
while (p != NULL) {
cout << p->next->data;
p = p->next;
}
}
int main() {
node* L;
element x=0;
cout << "输入x的值为:";
cin >> x;
initialList(L);
listAdd(L);
listDelete(L, x);
listPrint(L);
}
源代码及题如上,
输入数据都没问题,就是最后按9999退出的时候什么都没打印出来