链表
longying93
这个作者很懒,什么都没留下…
展开
-
单链表操作
1、单链表反转 力扣206 # Definition for singly-linked list. # class ListNode: # def __init__(self, x): # self.val = x # self.next = None # 头插入法 class Solution: def reverseList(self,...原创 2019-03-17 11:10:39 · 88 阅读 · 0 评论 -
Linked Lists - Sorted Insert
https://www.codewars.com/kata/linked-lists-sorted-insert/train/python Write a SortedInsert() function which inserts a node into the correct location of a pre-sorted linked list which is sorted in as...原创 2019-03-28 17:12:06 · 234 阅读 · 0 评论