摘要:
class Node: def __init__(self, x, next=None): self.value=x self.next=next def Qsort(head, tail): if head==None or tail==None or head==tail: return first=head ... 阅读全文
posted @ 2018-10-17 23:28
tanshoudong
阅读(475)
评论(0)
推荐(0)
浙公网安备 33010602011771号