码迷,mamicode.com
首页 > 其他好文 > 详细

数据结构初学

时间:2017-05-08 14:35:39      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:cin   主函数   include   log   main   lis   单链表   blog   std   

一、单链表的创建、删除、插入、打印

1.声明一个结构体

#include <iostream>

using namespace std;
struct List
{
    List *node;
    int n;
};

2.创建

List *create(List *head)
{
    int sum,i=1;;
    cout<<"输入总数:"<<endl;
    cin>>sum;
    List *p;
    List *Node =NULL;
    for(i=1;i<=sum;i++){
    Node =new List;
    cin>>Node->n;
    if(head==NULL)
    {
        head=Node;
    }
    else
        p->node=Node;
        p=Node;
    if(i==sum)
    {
        p->node=NULL;
    }
}
    return head;
}

3.插入

List* insert(int n,List *head,int num){
    List *p=NULL;
    List *q=NULL;
    p=head;
    int i=0;
    while(p!=NULL){ i++;
        if(i==n-1){
        q=new List;
    q->n=num;
    q->node=p->node;
            p->node=q;

        }
        p=p->node;

    }

4.删除

List* delet(int n,List *head){
    List *p=NULL;
    p=head;
    int i=1;
    if(n==1){
        head=p->node;
    }
    else{
   while(p!=NULL){
            i++;
    if(i==n-1){
        p->node=p->node->node;
    }
    p=p->node;
   }
    }
      return head;
}

5.打印

void show(List *head)
{
    List *p=NULL;
    p=head;
    while(p!=NULL)
    {
        cout<<p->n<<endl;
        p=p->node;

    }
}

主函数测试:

int main()
{
    List *student=NULL;
    student= create(student);
    show(student);
   student= delet(1,student);
    show(student);
    cout<<"*------------------*"<<endl;
    student=insert(2,student,8);
    show(student);
    return 0;
}

 

数据结构初学

标签:cin   主函数   include   log   main   lis   单链表   blog   std   

原文地址:http://www.cnblogs.com/booleanln/p/6824391.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!