码迷,mamicode.com
首页 >  
搜索关键字:leetcode解题报告    ( 67个结果
动态规划_leetcode312解题报告
#coding=utf-8# leetcode 312 解题报告 20190307 找工作期间#解题思路# 假设初始气球的状态是 [3,1,5,8]#、顺向思维# 第一步有四个选择:3,1,5,8 ,# 第二步有三个选择:…… o(n!)# 每一步后 原问题的规模是减少了 ,但是数据的同质性却破坏了 ...
分类:其他好文   时间:2019-03-17 13:48:53    阅读次数:129
LeetCode 解题报告
题目要求 Given an n-ary tree, return the postorder traversal of its nodes' values. 题目分析及思路 题目给出一棵N叉树,要求返回结点值的后序遍历。可以使用递归的方法做。因为是后序遍历,所以最后加入根结点的值。 python代码 ...
分类:其他好文   时间:2019-02-01 16:24:16    阅读次数:168
LeetCode解题报告—— Longest Valid Parentheses
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
LeetCode解题报告—— Reverse Nodes in k-Group && Sudoku Solver
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
LeetCode解题报告——Convert Sorted List to Binary Search Tree & Populating Next Right Pointers in Each Node & Word Ladder
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
leetCode解题报告5道题(九)
题目一: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
leetCode解题报告5道题(十)
题目一: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
【Leetcode解题报告】数组元素删除
Remove Element、 Remove Duplicates from Sorted Array、 Remove Duplicates from Sorted Array II、 Move Zeros ...
分类:编程语言   时间:2016-08-01 09:09:45    阅读次数:231
【Leetcode解题报告】单链表排序问题
Merge Two Sorted List、 Merge k Sorted List、 Insertion Sort List、 Sort List ...
分类:编程语言   时间:2016-07-25 01:49:00    阅读次数:226
【Leetcode解题报告】
第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
67条   1 2 3 4 ... 7 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!