C++에서 단일 링크 의 증가,삭제,수정,감 소 를 분석 합 니 다.
#include<iostream>
#include<string>
using namespace std;
struct Student{
string name;
string score;
Student *next;// Candidate
};
int main(){
int n;//
cout<<" :";
cin>>n;
int i=1;
Student *p=NULL;
Student *node=NULL;
Student *head=NULL;
//
for(;i<=n;i++){
node=new Student;
cout<<" "<<i<<" :";
cin>>node->name;
cout<<" "<<i<<" :";
cin>>node->score;
if(head==NULL)
head=node;
else
p->next=node;
p=node;
if(i==n){
p->next=NULL;
}
}
//
p=head;
cout<<" !"<<endl;
cout<<"
========== =============
"<<endl;
i=1;
while(p!=NULL){
cout<<" "<<i<<" ==="<<p->name<<"== ===="<<p->score<<endl;
p=p->next;
i++;
}
//
Student *d;
p=head;
while(p!=NULL){
d=p;
p=p->next;
delete d;
}
return 0;
}

#include<iostream>
#include<string>
using namespace std;
struct Student{
string name;
string score;
Student *next;// Candidate
};
Student * Create(Student * head){
Student *p=NULL;
Student *node=NULL;
int n;//
cout<<" :";
cin>>n;
for(int i=1;i<=n;i++){
node=new Student;
cout<<" "<<i<<" :";
cin>>node->name;
cout<<" "<<i<<" :";
cin>>node->score;
if(head==NULL)
head=node;
else
p->next=node;
p=node;
if(i==n){
p->next=NULL;
}
}
return head;
}
void Print(Student * head){
Student *p=NULL;
p=head;
cout<<" !"<<endl;
cout<<"
========== =============
"<<endl;
int i=1;
while(p!=NULL){
cout<<" "<<i<<" ==="<<p->name<<"== ===="<<p->score<<endl;
p=p->next;
i++;
}
cout<<"
"<<endl;
}
void Insert(Student * head,int k){
Student *p=NULL;
Student *node=NULL;
p=head;
int i=1;
while(p!=NULL){
if(i+1==k){
node=new Student;
cout<<" "<<k<<" :";
cin>>node->name;
cout<<" "<<k<<" :";
cin>>node->score;
node->next=p->next;
p->next=node;
}
p=p->next;
i++;
}
}
void Destory(Student * head){
Student *d;
Student *p=NULL;
p=head;
while(p!=NULL){
d=p;
p=p->next;
delete d;
}
}
int main(){
Student *head=NULL;
//
head=Create(head);
//
Print(head);
//
int k;
cout<<" :";
cin>>k;
Insert(head,k);
//
Print(head);
//
Destory(head);
return 0;
}

#include<iostream>
#include<string>
using namespace std;
struct Student{
string name;
string score;
Student *next;// Candidate
};
Student * Create(Student * head){
Student *p=NULL;
Student *node=NULL;
int n;//
cout<<" :";
cin>>n;
for(int i=1;i<=n;i++){
node=new Student;
cout<<" "<<i<<" :";
cin>>node->name;
cout<<" "<<i<<" :";
cin>>node->score;
if(head==NULL)
head=node;
else
p->next=node;
p=node;
if(i==n){
p->next=NULL;
}
}
return head;
}
void Print(Student * head){
Student *p=NULL;
p=head;
cout<<" !"<<endl;
cout<<"
========== =============
"<<endl;
int i=1;
while(p!=NULL){
cout<<" "<<i<<" ==="<<p->name<<"== ===="<<p->score<<endl;
p=p->next;
i++;
}
cout<<"
"<<endl;
}
void Insert(Student * head,int k){
Student *p=NULL;
Student *node=NULL;
p=head;
if(k==1){
node=new Student;
cout<<" 1 :";
cin>>node->name;
cout<<" 1 :";
cin>>node->score;
node->next=head->next;
head=node;
}
int i=1;
while(p!=NULL){
if(i+1==k){
node=new Student;
cout<<" "<<k<<" :";
cin>>node->name;
cout<<" "<<k<<" :";
cin>>node->score;
node->next=p->next;
p->next=node;
}
p=p->next;
i++;
}
}
void Destory(Student * head){
Student *d;
Student *p=NULL;
p=head;
while(p!=NULL){
d=p;
p=p->next;
delete d;
}
}
void Alter(Student * head,int k){
int i=1;
Student *p=head;
while(p!=NULL){
if(i==k){
cout<<" "<<k<<" :";
cin>>p->name;
cout<<" "<<k<<" :";
cin>>p->score;
}
p=p->next;
i++;
}
}
Student * Delete(Student * head,int k){
int i=1;
Student *p=head;
Student *d=head;
if(k==1){
head=head->next;
}else{
while(p!=NULL){
if(i+1==k){
p->next=p->next->next;
}
p=p->next;
i++;
}
}
return head;
}
int main(){
Student *head=NULL;
//
head=Create(head);
//
Print(head);
//
int k;
cout<<" :";
cin>>k;
Insert(head,k);
//
Print(head);
//
cout<<" :";
cin>>k;
Alter(head,k);
//
Print(head);
//
cout<<" :";
cin>>k;
head=Delete(head,k);
//
Print(head);
//
Destory(head);
return 0;
}


이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
데이터 구조 상의 연습 (2) 싱글 체인 시트#include "stdafx.h" #include "stdlib.h" #include "malloc.h" #define TRUE 1 #define FALSE 0 #define OK 1 #define ERROR 0 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.