m0_59696689 2021-08-08 14:12 采纳率: 70.6%
浏览 19
已结题

求解编写错误:从后往前数,找到第n个元素

运行出来应该是这样的,第一个输的是n,就是从后往前数第几个元素,然后输入的是总共的元素。
img

//这是我写的,不知道哪有问题
int get_nth_last(int n, struct node *head) {
    struct node *p;
    p = head;
    while (p->next == NULL) {
        int i = p->data;
        return i;
    }
    int i = 0;
    while (p != NULL) {
        p = p->next;
        i++;
    }
    while (i - n > 0) {
        head = head->next;
    }
    int number = head->data;
    return number;

}

//这些代码不用改
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>

struct node {
    struct node *next;
    int          data;
};

int get_nth_last(int n, struct node *head);
struct node *strings_to_list(int len, char *strings[]);

// DO NOT CHANGE THIS MAIN FUNCTION

int main(int argc, char *argv[]) {
    if (argc < 2) {
        fprintf(stderr, "Usage: %s n list-elements\n", argv[0]);
        return 1;
    }
    int n = atoi(argv[1]);
    // create linked list from command line arguments
    struct node *head = strings_to_list(argc - 2, &argv[2]);

    int result = get_nth_last(n, head);
    printf("%d\n", result);

    return 0;
}




// DO NOT CHANGE THIS FUNCTION

// create linked list from array of strings
struct node *strings_to_list(int len, char *strings[]) {
    struct node *head = NULL;
    for (int i = len - 1; i >= 0; i = i - 1) {
        struct node *n = malloc(sizeof (struct node));
        assert(n != NULL);
        n->next = head;
        n->data = atoi(strings[i]);
        head = n;
    }
    return head;
}

  • 写回答

1条回答 默认 最新

  • 八云黧 2021-08-08 16:30
    关注

    注意这段代码:

        while (i - n > 0) {
            head = head->next;
        }
    

    它没有改变i和n,所以会死循环知道head发生段错误
    建议作如下更改:

        int num = i-n;
        while (num-- > 0) {
            head = head->next;
        }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 8月17日
  • 已采纳回答 8月9日
  • 创建了问题 8月8日

悬赏问题

  • ¥15 拟通过pc下指令到安卓系统,如果追求响应速度,尽可能无延迟,是不是用安卓模拟器会优于实体的安卓手机?如果是,可以快多少毫秒?
  • ¥20 神经网络Sequential name=sequential, built=False
  • ¥16 Qphython 用xlrd读取excel报错
  • ¥15 单片机学习顺序问题!!
  • ¥15 ikuai客户端多拨vpn,重启总是有个别重拨不上
  • ¥20 关于#anlogic#sdram#的问题,如何解决?(关键词-performance)
  • ¥15 相敏解调 matlab
  • ¥15 求lingo代码和思路
  • ¥15 公交车和无人机协同运输
  • ¥15 stm32代码移植没反应