.T21 2021-04-07 07:12 采纳率: 50%
浏览 204
已采纳

C语言反向输出链表.

无法正确反向输出链表

#include <stdio.h>
#include "string.h"
#include "stdlib.h"
typedef struct node {
    int data;
    struct node* next;
}Node;

int main() {
    struct node *newn = malloc(sizeof(struct node));
    struct node *newn2 = malloc(sizeof(struct node));
    newn->next = NULL;
    Push(&newn, 1);
    Push(&newn, 2);
    Push(&newn, 3);
    Push(&newn, 4);
    Push(&newn, 4);

    
    RecursiveReverse(&newn);//?
    printQueue(newn);
    return 0;

}

void Push(Node**headRef, int newData){


    Node *head = *headRef;
    struct node *newn = malloc(sizeof(struct node)); //
    newn->data = newData;
    newn->next = head;
    head = newn;

    *headRef = head;

}
void RecursiveReverse(Node**headRef){

    struct node* head = (*headRef);
    if(head->next->next !=NULL){
        RecursiveReverse(&(head->next));
    }
    while(head->next !=NULL){
        head = head->next;
    }
    struct node* newn2 = (*headRef);
    (*headRef) = (*headRef)->next;
    head->next = newn2;
    newn2->next =NULL;



}

void printQueue(Node* l){
    while(l->next != NULL){//
        printf("data is %d\n", l->data);
        l = l->next;
    }
    printf("\n");
}

推入的数据应该是1,2,3,4,4,结果应该是12344

但是这个输出的是

data is 11950480
data is 1
data is 2
data is 3
data is 4

不知道哪里出问题了

  • 写回答

7条回答 默认 最新

  • 小白小白你好菜 2021-04-07 09:02
    关注

    改好了,题主可以看一下,栈逆置有点特殊

    #include <stdio.h>
    #include "string.h"
    #include "stdlib.h"
    typedef struct node {
        int data;
        struct node* next;
    }Node;
    
    void Push(Node**headRef, int newData){
     
     
        Node *head = *headRef;
        struct node *newn = (Node *)malloc(sizeof(struct node)); //
        newn->data = newData;
        newn->next = head;
        head = newn;
        *headRef = head;
    }
    
    
    void RecursiveReverse(Node**headRef){
    	Node *p = *headRef;
    	Node *q;
    	*headRef = NULL;
    	while(p->next->next != NULL){
    		q = p->next;
    		p->next = *headRef;
    		*headRef = p;
    		p = q;
    	}
    	p->next = *headRef;
    	*headRef = p;
    }
     
    void printQueue(Node* l){
        while(l != NULL){//
            printf("data is %d\n", l->data);
            l = l->next;
        }
        printf("\n");
    }
    
    int main() {
        struct node *newn = (Node *)malloc(sizeof(struct node));
        newn->next = NULL;
        Push(&newn, 1);
        Push(&newn, 2);
        Push(&newn, 3);
        Push(&newn, 4);
        Push(&newn, 4);
        RecursiveReverse(&newn);//?
        printQueue(newn);
        return 0;
    }
     
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(6条)

报告相同问题?

悬赏问题

  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器