摘要: //反序输出链表中的值采用的方法是顺序遍历链表,将读取到的数存到栈中,再输出的办法。void PrintListReversingly_Iteratively(ListNode* pHead){ stack<ListNode*> nodes; ListNode *pNode=pHead; while 阅读全文