摘要: 代码: #include<iostream>#include<stack> using namespace std; class ListNode{public: int m_nKey; ListNode* m_pNext; ListNode(int data):m_pNext(nullptr){ 阅读全文
posted @ 2020-10-06 09:41 诗和远方* 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 代码: #include<iostream> using namespace std; class listnode{public: int m_nValue; listnode* m_pNext; listnode(int data):m_pNext(nullptr){ this->m_nValu 阅读全文
posted @ 2020-10-06 01:19 诗和远方* 阅读(269) 评论(0) 推荐(0) 编辑