#coding=utf-8# leetcode 312 解题报告 20190307 找工作期间#解题思路# 假设初始气球的状态是 [3,1,5,8]#、顺向思维# 第一步有四个选择:3,1,5,8 ,# 第二步有三个选择:…… o(n!)# 每一步后 原问题的规模是减少了 ,但是数据的同质性却破坏了 ...
分类:
其他好文 时间:
2019-03-17 13:48:53
阅读次数:
129
题目要求 Given an n-ary tree, return the postorder traversal of its nodes' values. 题目分析及思路 题目给出一棵N叉树,要求返回结点值的后序遍历。可以使用递归的方法做。因为是后序遍历,所以最后加入根结点的值。 python代码 ...
分类:
其他好文 时间:
2019-02-01 16:24:16
阅读次数:
168
Given a string containing just the characters '(' and ')', find the length of the longest valid (well-formed) parentheses substring. Example 1: Exampl ...
分类:
其他好文 时间:
2018-08-04 00:37:15
阅读次数:
192
1. Reverse Nodes in k-Group Given a linked list, reverse the nodes of a linked list k at a time and return its modified list. k is a positive integer ...
分类:
其他好文 时间:
2018-08-03 23:18:45
阅读次数:
248
1. Convert Sorted List to Binary Search Tree Given a singly linked list where elements are sorted in ascending order, convert it to a height balanced ...
分类:
其他好文 时间:
2018-04-23 15:41:49
阅读次数:
161
题目一:Combinations Given two integers n and k, return all possible combinations of k numbers out of 1 ... n. For example, If n = 4 and k = 2, a solution ...
分类:
其他好文 时间:
2017-08-09 11:30:53
阅读次数:
164
题目一:Valid Number Validate if a given string is numeric. Some examples: "0" => true " 0.1 " => true "abc" => false "1 a" => false "2e10" => true Note: ...
分类:
其他好文 时间:
2017-06-12 11:52:00
阅读次数:
167
Remove Element、 Remove Duplicates from Sorted Array、 Remove Duplicates from Sorted Array II、 Move Zeros ...
分类:
编程语言 时间:
2016-08-01 09:09:45
阅读次数:
231
Merge Two Sorted List、 Merge k Sorted List、 Insertion Sort List、 Sort List ...
分类:
编程语言 时间:
2016-07-25 01:49:00
阅读次数:
226
第1章 单链表 1.1 删除单链表中的结点 203 Remove Linked List Elements 83 Remove Duplicates from Sorted List 82 Remove Duplicates from Sorted List II 19 Remove Nth Nod ...
分类:
其他好文 时间:
2016-07-23 00:34:27
阅读次数:
178