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

单链表

时间:2015-09-22 18:26:51      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:

 

 1 #include<iostream>
 2 using namespace std;
 3  
 4 //单链表结构体
 5 typedef struct student
 6 {
 7     int data;
 8     struct student *next;
 9 }node;
10  
11 //建立单链表
12 node *create()
13 {
14     node *head,*p,*s;
15     int x,cycle=1;
16     head=(node*)malloc(sizeof(node)); //建立头节点
17     p=head;
18     while(cycle)
19     {
20         printf("\nPlease input the data:");
21         scanf("%d",&x);
22         if(x!=0)
23         {
24             s=(node*)malloc(sizeof(node));//每次新建一个节点
25             s->data=x;
26             printf("\n%d",s->data);
27             p->next=s;
28             p=s;
29         }
30         else
31         {
32             cycle=0;
33         }
34     }
35     head=head->next;
36     p->next=NULL;
37     printf("\n   yyy   %d",head->data);
38     return (head);
39 }
40  
41 //单链表测长
42 int length(node *head)
43 {
44     int n=0;
45     node *p;
46     p=head;
47     while(p!=NULL)
48     {
49         p=p->next;
50         n++;
51     }
52     return (n);
53 }
54  
55 //单链表打印
56 void print(node *head)
57 {
58     node *p;
59     int n;
60     n=length(head);
61     printf("\nNow,These %d records are :\n",n);
62     p=head;
63     if(head!=NULL)
64         p=p->next;
65     while(p!=NULL)
66     {
67         printf("\n   uuu  %d    ",p->data);
68         p=p->next;
69     }
70 }
//单链表删除节点
node *remove(node *head ,int num)
{
    node *p1,*p2;
    p1=head;
    while(num!=p1->data && p1->next!=NULL)//查找data为num的节点
    {
        p2=p1;
        p1=p1->next;
    }
    if(num==p1->data) //如果存在num节点,则删除
    {
        if(p1==head)
        {
            head=p1->next;
            free(p1);
        }
        else
        {
            p2->next=p1->next;
        }
    }
    else
    {
        printf("\n%d could not been found",num);
    }
    return (head);
}

//单链表插入节点
node *insert(node *head,int num)
{
    node *p0,*p1,*p2;
    p1=head;
    p0=(node *)malloc(sizeof(node));
    p0->data=num;
    while(p0->data > p1->data && p1->next!=NULL)
    {
        p2==p1;
        p1=p1->next;
    }
    if(p0->data<=p1->data)
    {
        if(head==p1)
        {
            p0->next=p1;
            head=p0;
        }
        else
        {
            p2->next=p0;
            p0->next=p1;
        }
    }
    else
    {
        p1->next=p0;
        p0->next=NULL;
    }
    return (head);
}

//单链表排序
node *sort(node *head)
{
    node *p,*p2,*p3;
    int n;
    int temp;
    n=length(head);
    if(head==NULL ||head->next==NULL)//如果只有一个或者没有节点
        return head;
    p=head;
    for(int j=1;j<n;++j)
    {
        p=head;
        for(int i=0;i<n-j;++i)
        {
            if(p->data > p->next->data)
            {
                temp=p->data;
                p->data=p->next->data;
                p->next->data=temp;
            }
            p=p->next;
        }
    }
    return (head);
}

//单链表逆置
node *reverse(node *head)
{
    node *p1,*p2,*p3;
    if(head==NULL || head->next==NULL)
        return head;
    p1=head;
    p2=p1->next;
    while(p2)
    {
        p3=p2->next;
        p2->next=p1;
        p1=p2;
        p2=p3;
    }
    head->next=NULL;
    head=p1;
    return head;
}

//删除单链表的头元素
void RemoveHead(node *head)
{
    node *p;
    p=head;
    head=head->next;
    free(p);
}

//给出一个单链表,不知道节点N的值,怎么只遍历一次就可以求出中间节点
void searchmid(node *head,node *mid)
{
    node *p,*q;
    p=head;
    q=head;
    while(p->next->next!=NULL)
    {
        p=p->next->next;
        q=q->next;
        mid=q;
    }
}

给定一个单向链表,设计一个时间优化并且空间优化的算法,找出该链表的倒数第m个元素。实现您的算法,注意处理相关的出错情况。m定义为当m=0时,返回链表最后一个元素。

    解析:这是一个难题,我们需要的是倒数第m个元素,所以如果我们从某个元素开始,遍历了m个元素之后刚好到达链表末尾,那么这个元素就是要找的元素。也许从链表的尾部倒推回去不是最好的办法,那么我们可以从链表头开始计数。

    思路一:我们可以先一次遍历求出链表的总长度n,然后顺序变量求出第n-m个元素,那么这个就是我们要找的元素了。

    思路二:我们用两个指针,一个当前位置指针p和一个指向第m个元素的指针q,需要确保两个指针之间相差m个元素,然后以同样的速度移动它们,如果当q到达链表末尾时,那么p指针就是指向倒数第m个元素了。

    答案:

//思路一
node *searchLastElement1(node *head,int m)
{
    if(head==NULL)
        return NULL;
    node *p=head;
    int count=0;
    while(p!=NULL)
    {
        p=p->next;
        count++;
    }
 
    if(count<m)
        return NULL;
 
    p=head;
    for(int i=0;i<count-m;i++)
    {
        p=p->next;
    }
    return p;
}
 
//思路二
node *searchLastElement2(node *head,int m)
{
    if(head==NULL)
        return NULL;
    node *p,*q;
    p=head;
    for(int i=0;i<m;i++)
    {
        if(p->next!=NULL)
        {
            p=p->next;
        }
        else
        {
            return NULL;
        }
    }
 
    q=head;
    while(p->next!=NULL)
    {
        p=p->next;
        q->next;
    }
    return q;
}

 

单链表

标签:

原文地址:http://www.cnblogs.com/SnailProgramer/p/4829456.html

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