摘要:
入坑力扣,希望可以经常练一练,然后记录一下,更新。 所有一级标题的前缀为:leetcode-cn.com/problems /container-with-most-water 第一次使用了暴力O(n^2)的方法,直接超出限制,后来改为O(n)。 Python class Solution: def 阅读全文
摘要:
题目来自于:https://leetcode-cn.com/problems/add-two-numbers Python # Definition for singly-linked list. # class ListNode: # def __init__(self, val=0, next= 阅读全文
摘要:
参考自:http://data.biancheng.net/view/5.html 如何创建链表 首先创建一个结构体表示节点: typedef struct Link{ int elem; struct Link *next; }link; 接下来编写初始化函数。由一维数组初始化链表。 link * 阅读全文