赞
踩
题目如下
看完题目之后,思考的结果是用递归做应该是最佳的选择。但无奈水平真的有限,没有想出来如何用设计递归。提交的时候就没有用递归实现,运行结果可想而知:23ms。看了第一名的用时是5ms,而且代码简洁优美,不得不佩服
- /**
- *Definition for singly-linked list
- */
- class ListNode{
- int val;
- ListNode next;
-
- ListNode(int x){
- val = x;
- }
- }
- public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
- if (l1 == null) return l2;
- if (l2 == null) return l1;
-
- ListNode head = null;
- if (l1.val <= l2.val){
- head = l1;
- head.next = mergeTwoLists(l1.next, l2);
- } else {
- head = l2;
- head.next = mergeTwoLists(l1, l2.next);
- }
- return head;
- }
关于程序递归的运行步骤,我画了一个简图帮助自己理解
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。