2023-08-03力扣今日五题

链接:

剑指 Offer 06. 从尾到头打印链表

题意:

如题

解:

递归OR翻转

实际代码:

#include
using namespace std;
struct ListNode
{
    int val;
    ListNode *next;
    ListNode(int x) : val(x), next(NULL) {}
};
vector reversePrint(ListNode* head)
{
    vectorans;
    auto bi=inserter(ans,ans.begin());
    while(head!=nullptr)
    {
        bi=head->val;
        head=head->next;
    }
    reverse(ans.begin(),ans.end());
    return ans;
}
int main()
{
    
}

限制:

  • 0 <= 链表长度 <= 10000

你可能感兴趣的:(力扣每日一题,leetcode,算法)