原创 面試手撕代碼總結(二)-鏈表篇

面試手撕代碼總結(二)-鏈表篇 1.合併兩個有序鏈表 public ListNode Merge(ListNode list1,ListNode list2) { if(list1==null){