鏈表逆序輸出

#include <iostream> #include <cstdio> #include <stdlib.h> using namespace std; struct ListNode { int m_value; ListNode *m_pNext; }; void PrintList(ListNode *pHead); int main() { ListNode *
相關文章
相關標籤/搜索