開發平台(Platform): (Ex: Win10, Linux, ...)
Win10
編譯器(Ex: GCC, clang, VC++...)+目標環境(跟開發平台不同的話需列出)
VC2015
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
none
問題(Question):
設計方法是利用Node物件 包含一個紀錄值(int) 及 指向下個 Node 的 Node*指標
Node有Get 及設定下一個節點的方法。
在List中InsertNode裡面使用LinkedNode無法有效連接下一節點。
餵入的資料(Input):
Node pNode(1);
Node pNode2(2);
Node pNode3(3);
預期的正確結果(Expected Output):
1 2 3
錯誤結果(Wrong Output):
nullptr
程式碼(Code):(請善用置底文網頁, 記得排版)
https://github.com/CJayKao/LinkedList-
補充說明(Supplement):
卡在無法把Node中*Node nextNode無法指向正確節點。
感謝PTT板友