.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 定制ai直播实时换脸软件
  • ¥100 栈回溯相关,模块加载后KiExceptionDispatch无法正常回溯了
  • ¥15 Utunbu中vscode下cern root工作台中写的程序root的头文件无法包含
  • ¥15 麒麟V10桌面版SP1如何配置bonding
  • ¥15 Marscode IDE 如何预览新建的 HTML 文件
  • ¥15 K8S部署二进制集群过程中calico一直报错
  • ¥15 java python或者任何一种编程语言复刻一个网页
  • ¥20 如何通过代码传输视频到亚马逊平台
  • ¥15 php查询mysql数据库并显示至下拉列表中