圖示指針傳值操作

傳值操作 #include <iostream> using namespace std; struct ListNode { int m_nValue; ListNode* m_pNext; }; void createList(ListNode *head) { head = new(ListNode); head->m_nValue = 1; he
相關文章
相關標籤/搜索