Merge Two Sorted Lists

Descrição

FlashCards sobre Merge Two Sorted Lists, criado por Suhas S em 17-02-2018.
Suhas S
FlashCards por Suhas S, atualizado more than 1 year ago
Suhas S
Criado por Suhas S quase 8 anos atrás
2
0

Resumo de Recurso

Questão Responda
Merge Two Sorted Lists public ListNode mergeTwoLists(ListNode l1, ListNode l2) { if(l1==null) return l2; if(l2==null) return l1; if(l1.val <= l2.val){ l1.next = mergeTwoLists(l1.next,l2); return l1; } if(l2.val <= l1.val){ l2.next = mergeTwoLists(l2.next,l1); return l2; } return null; }

Semelhante

Linked List
Subash M
Delete Node in a BST
Suhas S
Delete a node with a key
Suhas S
Remove Nth Node From End of List
Suhas S
Swap Nodes in Pairs
Suhas S
Odd Even Linked List
Suhas S
Rotate List
Suhas S
Add Two Numbers
Suhas S
Copy List with Random Pointer
Suhas S