剑指offer-包含min函数的栈-栈和队列-python
Posted ansang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer-包含min函数的栈-栈和队列-python相关的知识,希望对你有一定的参考价值。
题目描述
输入两个单调递增的链表,输出两个链表合成后的链表,当然我们需要合成后的链表满足单调不减规则。
# -*- coding:utf-8 -*- # class ListNode: # def __init__(self, x): # self.val = x # self.next = None class Solution: # 返回合并后列表 def Merge(self, pHead1, pHead2): # write code here if not pHead1: return pHead2 if not pHead2: return pHead1 if pHead1.val <= pHead2.val: pHead1.next = self.Merge(pHead1.next,pHead2) return pHead1 else: pHead2.next = self.Merge(pHead1,pHead2.next) return pHead2
以上是关于剑指offer-包含min函数的栈-栈和队列-python的主要内容,如果未能解决你的问题,请参考以下文章