合併兩個有序的單鏈表【單鏈表】【Java】

public static ListNode mergeTwoLists( ListNode headA,ListNode headB) { ListNode node= new ListNode(-1); ListNode tmp=node; while(headA!=null && headB!=null){
相關文章
相關標籤/搜索