【剑指Offer | C++ 】面试题6:替换空格

输入一个链表的头节点,从尾到头反过来打印出每个节点的值,不允许修改输入数据(不能改变链表的节构)。链表节点定义如下:

struct ListNode()
{
	int m_nKey;
	ListNode* m_pNext;
}
  • 解法①:逆向用栈
    遇到逆向题第一反应:万能栈Stack
#include<iostream>
#include<stack>
using namespace std;

struct ListNode
{
    int m_nKey;
    ListNode* m_pNext;
};

int main() {
    /* 构建链表 */
    ListNode* node1 = new ListNode();
    ListNode* node2 = new ListNode();
    node1->m_nKey = 1;
    node2->m_nKey = 2;

    node1->m_pNext = node2;
    node2->m_pNext = nullptr;

    ListNode* head = node1;

    /* 开始算法 */
    stack<ListNode*> nodes;
    while (head != nullptr) {
        nodes.push(head);
        head = head->m_pNext;
    }

    while (!nodes.empty()) {
        head = nodes.top();
        cout << head->m_nKey << "\n";
        nodes.pop();
    }

}
  • 解法②:栈 可使用递归实现
    需要注意链表太长不可使用此种方法
#include<iostream>
using namespace std;

struct ListNode
{
    int m_nKey;
    ListNode* m_pNext;
};

void recursion(ListNode* node) {
    if (node != nullptr) {
        recursion(node->m_pNext);
        cout << node->m_nKey;
    }
    
}

int main() {
    /* 构建链表 */
    ListNode* node1 = new ListNode();
    ListNode* node2 = new ListNode();
    node1->m_nKey = 1;
    node2->m_nKey = 2;

    node1->m_pNext = node2;
    node2->m_pNext = nullptr;

    ListNode* head = node1;

    /* 开始算法 */
    recursion(head);

}

报错:

“->”: 非函数声明符后不允许尾随返回类型

对链表的操作不能直接放在函数外……

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

赛文X

觉得不错就打赏下呗mua~

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值