标题:关于单链表
只看楼主
xuchuanjie
Rank: 1
等 级:新手上路
帖 子:11
专家分:0
注 册:2010-11-21
结帖率:25%
 问题点数:0 回复次数:2 
关于单链表
#include "stdio.h"
#include "stdlib.h"
#define n 8
typedef struct max
 {int num;
 struct max *next;
 }DT;
DT *create()
{int i=1;
    DT *head,*p;
    head=(DT *)malloc(sizeof(DT));
    head->num=i++;
    head->next=head;
    while(i<=n)
    {p=(DT *)malloc(sizeof(DT));
        p->num=i++;
        p->next=head->next;
        head->next=p;
    }
    return (head);
    }
main()
{DT *p,*q,*head;
    int i=1,j=n,m;   
    head=create ();
    q=head;
    while(i<n)
    q=q->next;
    p=head;
    while(p)
    {
        m=i++;        
        if(m%3==0)
        {
         q->next=p->next;
         free(p);            
         j--;
        }                     
          p=p->next;                 
        if(j==1) break;        
    }
    printf("%d",p->num);   
}
用单链表  编写从八只猴子中选出一个大王   看看哪错啦!
搜索更多相关主题的帖子: head next include return create 
2011-03-27 21:41
laoyang103
Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19
来 自:内蒙古包头
等 级:贵宾
威 望:19
帖 子:3082
专家分:11056
注 册:2010-5-22
得分:0 
不知道   你链表用的是什么创建法

                                         
===========深入<----------------->浅出============
2011-03-28 12:35
xuchuanjie
Rank: 1
等 级:新手上路
帖 子:11
专家分:0
注 册:2010-11-21
得分:0 
先创建一个带有头结点的循环链表 再插结点
2011-03-28 13:28



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-334944-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.100239 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved