剑指offer-java实现
CannotGotoAnyWhere
学习
展开
-
剑指Offer面试题3 & Leetcode74
剑指Offer面试题3 & Leetcode74 Search a 2D Matrix 二维数组中的查找原创 2017-05-06 13:51:10 · 542 阅读 · 0 评论 -
剑指Offer面试题21 & Leetcode155
剑指Offer面试题21 & Leetcode155Min Stack 包含min函数的栈原创 2017-05-09 10:24:59 · 576 阅读 · 0 评论 -
剑指Offer面试题19 & Leetcode226
剑指Offer面试题19 & Leetcode226Invert Binary Tree 二叉树的镜像原创 2017-05-09 10:05:35 · 578 阅读 · 0 评论 -
剑指Offer面试题18 & Leetcode572
剑指Offer面试题18 & Leetcode572Subtree of Another Tree 树的子结构原创 2017-05-08 21:12:29 · 529 阅读 · 0 评论 -
剑指Offer面试题17 & Leetcode21
剑指Offer面试题17 & Leetcode21Merge Two Sorted Lists 合并两个排序的链表原创 2017-05-08 20:18:36 · 1070 阅读 · 0 评论 -
剑指Offer面试题16 & Leetcode206
剑指Offer面试题16 & Leetcode206Reverse Linked List 反转链表原创 2017-05-08 19:59:35 · 641 阅读 · 0 评论 -
剑指Offer面试题11 & Leetcode50
剑指Offer面试题11 & Leetcode50Pow(x, n) 数值的整数次方 Implement pow(x, n).解题思路 考虑:这个题的难点在于处理各种极端输入,例如指数为0,指数为负等,需要考虑全面。在实现乘方的过程中,使用递推关系式减小乘法次数,缩短运行时间。 递推公式为:n为偶数时,a的n次方等于a的n/2次方乘a的n/2次方。n为奇数时,a的n次方等于原创 2017-05-08 15:22:08 · 1193 阅读 · 0 评论 -
剑指Offer面试题10 & Leetcode191
剑指Offer面试题10 & Leetcode191Number of 1 Bits 二进制中1的个数原创 2017-05-08 11:06:46 · 651 阅读 · 0 评论 -
剑指Offer面试题8 & Leetcode153
剑指Offer面试题8 & Leetcode153Find Minimum in Rotated Sorted Array旋转数组的最小数字原创 2017-05-08 09:56:49 · 542 阅读 · 0 评论 -
剑指Offer面试题7 & Leetcode232
剑指Offer面试题7 & Leetcode232Implement Queue using Stacks用两个栈实现队列原创 2017-05-07 17:45:59 · 347 阅读 · 0 评论 -
剑指Offer面试题6 & Leetcode105
剑指Offer面试题6 & Leetcode105Construct Binary Tree from Preorder and Inorder Traversal重建二叉树原创 2017-05-07 17:04:26 · 778 阅读 · 0 评论 -
剑指Offer面试题9 & Leetcode70
剑指Offer面试题9 & Leetcode70Climbing Stairs 斐波那契数列原创 2017-05-08 10:41:28 · 1082 阅读 · 0 评论