leetcode刷題,總結,記錄,備忘83

2021-07-03 11:18:17 字數 548 閱讀 9484

leetcode83.

for example,

given1->1->2, return1->2.

given1->1->2->3->3, return1->2->3.

不想說什麼了,,比較簡單的題目,,大爺的我提了6,7遍才過,,因為中間有個流程一直疏忽了,如果當前項值域和下乙個結點的值域相同的話,在將下乙個結點刪掉,即連到下乙個結點的下乙個結點之後,不要做temp = temp->next,,這樣的蛋疼操作,,我一直疏忽了,,這是easy題啊,,,我提了那麼多遍,,,又把通過率給拉低了-。-,,,好了,上**

/**

* definition for singly-linked list.

* struct listnode

* };

*/class solution

temp = temp->next;

}return head;

}};

leetcode刷題,總結,記錄,備忘 226

leetcode226題。invert binary tree 倒置二叉樹。想不到這題還有個梗,挺有意思的。我一開始自作聰明,想用乙個棧乙個佇列來做,用中序遍歷,把節點push進棧中,把節點的指push進佇列中,遍歷完之後,分別從棧頂和佇列頂拿出節點和數值,賦值。一開始想著感覺還挺對的,遞交了幾次都...

leetcode刷題,總結,記錄,備忘202

leetcode202 credits special thanks to mithmatt and ts for adding this problem and creating all test cases.還是比較簡單的題目,雖然我提的次數比較多,又拉低了通過率,真是無情。每次計算如果得到結果...

leetcode刷題,總結,記錄,備忘 260

leetcode260 for example givennums 1,2,1,3,2,5 return 3,5 note the order of the result is not important.so in the above example,5,3 is also correct.you...