劍指OFFER----2五、合併兩個排序的鏈表 (js實現)

題目 輸入兩個單調遞增的鏈表,輸出兩個鏈表合成後的鏈表,固然咱們須要合成後的鏈表知足單調不減規則。web function Merge(pHead1, pHead2) { // write code here var Head = null; if (pHead1 == null || pHead2 == null) { return pHead1 || p
相關文章
相關標籤/搜索