计算机软件技术基础的实验代码
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
#include
struct node{
int data;
node *next;
};
//建立一条有序链表
node *create_sort(void)
{
node *p1,*head=0;
int a;
cout<<"建立一条有序链表,请输入数据,以-1 结束:";
cin>>a;
while(a!=-1){
p1=new node;
p1->data=a;
head=insert(head,p1);
cin>>a;
}
return(head);
}
//输出链表上各个结点的值
void print(const node *head)
{
const node *p;
p=head;
cout<<"链表上各个结点的数据为:\n";
while(p!=NULL){
cout<
p=p->next;
}
cout<<'\n';
}
//删除链表上具有指定值的一个结点
node *delete_one_node(node *head,int num)
{
node *p1,*p2;
if(head==NULL){
cout<<"链表为空,无结点可删!\n";
return(NULL);
}
if (head->data==num){
p1=head;
head=head->next;
delete p1;
cout<<"删除了一个结点!\n";
}
else{
p2=p1=head;
while(p2->data!=num&&p2->next!=NULL){
p1=p2;
p2=p2->next;
}
if (p2->data==num){
p1->next=p2->next;
delete p2;
cout<<"删除了一个结点!\n";
}
else cout<
return(head);
}
//释放链表的结点空间
void deletechain(node *h)
{
node *p1;
while(h){
p1=h;
h=h->next;
delete p1;
}
cout<<"已释放链表的结点空间!\n";
}
int count(node *head)//求链表的结点数
{
int n;
node *p;
p=head;
n=0;
while(p!=NULL){
n=n+1;
p=p->next;
}
return(n);
}
//删除链表上第k 个结点
node *delete_k_node(node *head,int k)
{
int j=1;
node *p,*p1;
if(head==NULL){
cout<<"链表为空,无结点可删!\n";
return(NULL);
}
p=head;
if (k==1){
p=head;
head=head->next;
delete p;
cout<<"删除了第一个结点!\n";
}
else{
p=find(head,k-1); //查找第k-1 个结点,并由p 指向该结点
if (p->next!=NULL)
{
p1=p->next;
p->next=p1->next;
delete p1;
cout<<"删除了第"<
return(head);
}
//函数insert(node *head,int num) 实现把一个结点插入链表,仍保持链表上各结
点的升序关系,你自己实现
void main(void)
{
node *head;
int num;
int k;
head= create_sort ();
print(head);
cout<<"结点数:"<
cin>>num;
head=delete_k_node(head,k);
print(head);
cout<<"输入要删除结点上的整数!\n";
cin>>num;
head=delete_one_node(head,num);
print(head);
deletechain(head);
cout<<"输入要插入的整数!\n"
cin>>num;
head=insert(head, num);
print(head);
}