解题思路:
注意事项:
参考代码:
#include<bits/stdc++.h>
using namespace std;
typedef struct Node{
int data;
struct Node *next;
}node;
void creat(node *head,int n){//尾
for(int i=0;i<n;i++){
node *tail=(node *)malloc(sizeof(node));
tail->next=head->next;
cin>>tail->data;
head->next=tail;
}
}
void print(node *head){
if(head->next==NULL){
cout<<"Link list is empty"<<endl;
return ;
}
node *p=(node *)malloc(sizeof(node));
p=head->next;
while(p){
cout<<p->data<<' ';
p=p->next;
}
cout<<endl;
}
void get(node *head,int n){
node *p=(node *)malloc(sizeof(node));
p=head;
while(p&&n){
n--;
p=p->next;
}
if(n>0){
cout<<"get fail"<<endl;
return ;
}
cout<<p->data<<endl;
}
void insert(node *head,int n,int data){
node *p=(node *)malloc(sizeof(node));
p=head,n--;
while(p->next&&n){
n--;
p=p->next;
}
if(n>0){
cout<<"insert fail"<<endl;
return ;
}
node *q=(node *)malloc(sizeof(node));
q->data=data;
q->next=p->next;
p->next=q;
cout<<"insert OK"<<endl;
}
void Delete(node *head,int n){
if(head->next==NULL){
cout<<"delete fail"<<endl;
return ;
}
node *p=(node *)malloc(sizeof(node));
p=head,n--;
while(p->next&&n){
n--;
p=p->next;
}
if(n>0){
cout<<"delete fail"<<endl;
return ;
}
p->next=p->next->next;
cout<<"delete OK"<<endl;
}
int main(){
node *head=NULL;
head=(node *)malloc(sizeof(node));
head->next=NULL;
int n,b,c,d;
cin>>n;
creat(head,n);
string a;
cin>>n;
for(int i=0;i<n;i++){
cin>>a;
if(a=="show")
print(head);
else if(a=="delete"){
cin>>c;
Delete(head,c);
}
else if(a=="get"){
cin>>c;
get(head,c);
}
else if(a=="insert"){
cin>>c>>d;
insert(head,c,d);
}
}
return 0;
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题10.1 (C语言代码)浏览:639 |
C语言程序设计教程(第三版)课后习题6.2 (C++代码)浏览:999 |
点我有惊喜!你懂得!浏览:1274 |
不知道哪里错了浏览:1226 |
C语言训练-求素数问题 (C语言代码)浏览:773 |
矩阵乘法 (C++代码)浏览:1662 |
C语言训练-排序问题<1> (C语言代码)浏览:636 |
【金明的预算方案】 (C++代码)浏览:997 |
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:331 |
蛇行矩阵 (C语言代码)浏览:560 |