| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 277 人关注过本帖
标题:c描述双向链表删除结
只看楼主 加入收藏
wsclwps123
Rank: 1
来 自:安徽黄山
等 级:新手上路
帖 子:11
专家分:2
注 册:2014-2-12
收藏
 问题点数:0 回复次数:2 
c描述双向链表删除结
运行不出来。我的删除部分有2个函数,一个是把要删除的数据取出,一个是删除它。请教各位!能判断是代码末尾的那个函数有问题

#include <stdio.h>
#include <stdlib.h>

struct node {
    int value;
    struct node * prior;
    struct node * next;
};

struct node * in_link(void);   //创建一个双向链表
void print_link(struct node * head);
struct node * delete_link(struct node * head, int i);  //删除链表结点
struct node * get(struct node * head, int i);

int main(void)
{
    int i, y;
    struct node * head;
    head = in_link();
    print_link(head);
    printf("你想删除数据在链表的第几个数据: ");
    scanf("%d", &i);
    head = delete_link(head, i);
    print_link(head);
    return 0;
}

struct node * in_link(void)
{
    struct node *head, *temp, *add_temp;
    int n, i;
    printf("您想插入几个数据: ");
    scanf("%d", &n);
    head = (struct node *) malloc(sizeof(struct node));
    if (head == NULL) {
        printf("分配内存失败\n");
        exit (EXIT_FAILURE);
    }
    printf("请输入链表的第1个数据: ");
    scanf("%d", &head->value);
    head->next = NULL;
    temp = head;
    for (i = 2;i <= n;i++) {
        add_temp = (struct node *) malloc(sizeof(struct node)); //动态分配内存空间
        if (add_temp == NULL) {
            printf("内存分配失败\n");
            exit (EXIT_FAILURE);
        }
        printf("请输入链表的第%d个数据: ", i);
        scanf("%d", &add_temp->value);
        add_temp->next = NULL;
        temp->next = add_temp;
        temp = temp->next;
    }
    return head;
}

void print_link(struct node * head)
{
    while (head != NULL) {
        printf("%d ", head->value);
        head = head->next;
    }
    printf("\n");
}

struct node * get(struct node * head, int i)   //将你想删除的数据取出
{
    struct node * temp;
    int j = 1;
    temp = head;
    while (temp != NULL && j < i) {
        temp = temp->next;
        j++;
    }
    printf("%d\n", temp->value);
    return temp;
   
}

struct node * delete_link(struct node * head, int i)    //删除取出的数据,调用了get函数
{
    struct node * temp;
    temp = get(head, i);
    temp->prior->next = temp->next;
    temp->next->prior = temp->prior;
    free(temp);
    return head;
}
搜索更多相关主题的帖子: include 
2014-03-24 23:29
ying8501
Rank: 9Rank: 9Rank: 9
等 级:蜘蛛侠
威 望:6
帖 子:1092
专家分:1446
注 册:2008-11-24
收藏
得分:0 
两个地方有问题:
1)函数struct node * in_link(void)中没有给每个向前指针赋值。这是关键问题。
2)函数struct node * delete_link(struct node * head, int i) 中没有考虑删除第一个结点和删除最后一个结点的特殊情况。
2014-03-25 11:03
daring_star
Rank: 2
等 级:论坛游民
帖 子:38
专家分:65
注 册:2013-10-20
收藏
得分:0 
写的不错,不过我不想看,因为我现在没时间,呵呵呵呵呵!!!!

一如大学深似海,从此节操是路人。
2014-03-25 14:59
快速回复:c描述双向链表删除结
数据加载中...
 
   



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

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