AcWing 17. 从尾到头打印链表(C++)- 反转链表

2021/9/17 22:04:45

本文主要是介绍AcWing 17. 从尾到头打印链表(C++)- 反转链表,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

题目链接:https://www.acwing.com/problem/content/18/
题目如下:
在这里插入图片描述

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    vector<int> printListReversingly(ListNode* head) {
        vector<int> result;
        
        //1、反转链表
        ListNode* pre=NULL,*cur=head;
        
        while(cur!=NULL){
            ListNode* temp=cur->next;
            cur->next=pre;
            pre=cur;
            cur=temp;
        }
        
        //2、将内容存入result中
        while(pre!=NULL){
            result.push_back(pre->val);
            pre=pre->next;
        }
        
        return result;
    }
};


这篇关于AcWing 17. 从尾到头打印链表(C++)- 反转链表的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程