劍指offer二十五:兩個鏈表的第一個公共結點

    #include<iostream> using namespace std; //鏈表結點的定義 typedef struct linklist { int data; linklist* next; }node, *pnode; //獲得鏈表的長度 int getListLength(pnode head) { int length = 0; while (head !=
相關文章
相關標籤/搜索