摘要: 1 #include 2 #include "List.h" 3 4 void PrintListReversingly_Iteratively(ListNode* pHead) 5 { 6 std::stack nodes; 7 8 ListNode* pNode = pHead; 9 while (pNode != nullptr) 10 ... 阅读全文
posted @ 2018-10-23 21:47 清风oo 阅读(181) 评论(0) 推荐(0)