常见的动态规划问题 http://www.cnblogs.com/wuyuegb2312/p/3281264.html 知乎上的面试题 https://www.zhihu.com/question/24964987 ...
分类:
编程语言 时间:
2017-12-02 15:04:15
阅读次数:
146
Java写算法时常用的函数: Stack void push(E e):将给定元素”压入”栈中。存入的元素会在栈首。即:栈的第一个元素 E pop():将栈首元素删除并返回。 Queue boolean offer(E e):将元素追加到队列末尾,若添加成功则返回true。 E poll():从队首 ...
分类:
编程语言 时间:
2017-09-09 22:31:40
阅读次数:
221
这是昨天面试百度时碰到的一道算法题:任意数分三组,使得每组的和尽量相等(感谢博友提供的关于该问题的相关资料 划分问题)。由于时间仓促,加之面试时头昏脑涨,这道题没做出来甚至没有给出思路,这让我多少有些遗憾和不甘。因为最近接触算法的东西较多而且本身对算法感兴趣,所以回家之后绞尽脑汁想把这题做出来。其实 ...
分类:
编程语言 时间:
2017-08-23 13:43:41
阅读次数:
178
【062-Unique Paths(唯一路径)】 【LeetCode-面试算法经典-Java实现】【全部题目文件夹索引】 原题 A robot is located at the top-left corner of a m x n grid (marked ‘Start’ in the diagr ...
分类:
编程语言 时间:
2017-08-20 15:50:31
阅读次数:
146
【059-Spiral Matrix II(螺旋矩阵II)】 【LeetCode-面试算法经典-Java实现】【全部题目文件夹索引】 原题 Given an integer n, generate a square matrix filled with elements from 1 to n2 i ...
分类:
编程语言 时间:
2017-08-15 15:20:04
阅读次数:
170
【109-Convert Sorted List to Binary Search Tree(排序链表转换成二叉排序树)】 【LeetCode-面试算法经典-Java实现】【全部题目文件夹索引】 原题 Given a singly linked list where elements are sor ...
分类:
编程语言 时间:
2017-07-30 19:06:41
阅读次数:
125
【101-Symmetric Tree(对称树)】 【LeetCode-面试算法经典-Java实现】【全部题目文件夹索引】 原题 Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its ...
分类:
编程语言 时间:
2017-07-30 18:12:16
阅读次数:
156
【030-Substring with Concatenation of All Words(串联全部单词的子串)】 【LeetCode-面试算法经典-Java实现】【全部题目文件夹索引】 原题 You are given a string, s, and a list of words, word ...
分类:
编程语言 时间:
2017-07-30 17:06:44
阅读次数:
131
【106-Construct Binary Tree from Inorder and Postorder Traversal(通过中序和后序遍历构造二叉树)】 【LeetCode-面试算法经典-Java实现】【全部题目文件夹索引】 原题 Given inorder and postorder tr ...
分类:
编程语言 时间:
2017-07-30 16:54:59
阅读次数:
115
【114-Flatten Binary Tree to Linked List(二叉树转单链表)】 【LeetCode-面试算法经典-Java实现】【全部题目文件夹索引】 原题 Given a binary tree, flatten it to a linked list in-place. Fo ...
分类:
编程语言 时间:
2017-07-28 20:58:05
阅读次数:
215