自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(72)
  • 资源 (9)
  • 收藏
  • 关注

原创 项目复盘的目的和效果

什么是复盘? 为什么要复盘?复盘是对一个已经完成的活动过程的完整回顾和梳理, 而且是带着对这个已完成的活动的一些观察、问题去进行的,通常是从活动结果的分析开始进行倒推。复盘的目的是通过对活动过程的完整回顾、梳理、讨论,从而形成对活动过程中的正确、错误的活动行为的本质模型认知,用逐步沉淀下来的有共识的认知模型指导下次活动过程,最终达到对活动过程的不断迭代优化。 同时能积累下可复用的各种活动...

2020-04-25 09:31:59 8581

转载 The Anatomy of a Large-Scale Hypertextual Web Search Engine

The Anatomy of a Large-Scale Hypertextual Web Search EngineSergey Brin and Lawrence Page{sergey, page}@cs.stanford.eduComputer Science Department, Stanford University, Stanford, CA 94305Ab

2014-10-05 11:14:55 3652

原创 First Missing Positive

leetcode First Missing Positive

2014-06-07 21:49:16 569

原创 Pascal's Triangle II

Pascal's Triangle II, leetcode,两个解法

2014-06-06 23:37:03 595

原创 Combinations

combination 的6种解法

2014-05-08 00:40:30 714

原创 Word Search

Given a 2D board and a word, find if the word exists in the grid.The word can be constructed from letters of sequentially adjacent cell, where "adjacent" cells are those horizontally or vertically n

2014-05-04 23:32:22 361

原创 Jump Game

leetcode, Jump Game , 递推求解

2014-05-01 23:21:32 484

原创 Subsets II

leetcode, Subsets II

2014-05-01 21:41:48 484

原创 Sort Colors

leetcode,三色排序

2014-04-29 23:35:55 690

原创 Regular Expression Matching

leetcode, Regular Expression Matching

2014-04-27 20:58:47 544

原创 Letter Combinations of a Phone Number

Letter Combinations of a Phone Number, leetcode

2014-04-27 17:35:31 804

原创 String to Integer (atoi)

Implement atoi to convert a string to an integer.Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below and ask yourself what are the possible input case

2014-04-25 21:26:54 416

原创 Reverse Integer

Reverse digits of an integer.Example1: x = 123, return 321Example2: x = -123, return -321click to show spoilers.class Solution {public: int reverse(int x) {

2014-04-25 21:22:46 377

原创 Same Tree

leetcode, Same Tree判定

2014-04-25 20:26:35 624

原创 Longest Substring Without Repeating Characters

Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters for "abcabcbb" is "abc", which the length is 3. For

2014-04-20 22:20:13 325

原创 Palindrome Number

leetcode, palindrome number

2014-04-19 19:46:11 552

原创 Simplify Path

leetcode, simplify path

2014-04-10 22:44:36 678

原创 Gray Code

Gray code 生成的两种解法, leetcode

2014-04-08 23:56:34 507

原创 Copy List with Random Pointer

A linked list is given such that each node contains an additional random pointer which could point to any node in the list or null.Return a deep copy of the list.

2014-04-05 13:49:56 380

原创 Permutation Sequence

leetcode , Permutation Sequence, 递推

2014-04-05 00:19:41 645

原创 Scramble String

Given a string s1, we may represent it as a binary tree by partitioning it to two non-empty substrings recursively.Below is one possible representation of s1 = "great": great / \ gr

2014-04-03 22:57:49 605

原创 Wildcard Matching

leetcode,动态规划,字符串匹配

2014-04-02 23:47:46 555

原创 Binary Tree Maximum Path Sum

leetcode, 二叉树, Binary Tree Maximum Path Sum

2014-04-01 23:26:48 830

原创 Decode Ways

leetcode,Decode Ways, 动态规划

2014-03-31 23:26:34 494

原创 Maximal Rectangle

leetcode, Maximal Rectangle, 直方图面积计算的O(N)算法,垂线法

2014-03-30 19:28:23 582

原创 Insertion Sort List

leetcode, insort sort list 的两种解法

2014-03-30 16:08:43 499

原创 Binary Tree Preorder Traversal

leetcode, Binary Tree Preorder Traversal , 两种非递归解法, Morris 遍历讲解

2014-03-29 23:25:29 550

原创 Flatten Binary Tree to Linked List

leetcode, 递归,二叉树, Flatten Binary Tree to Linked List

2014-03-29 00:21:16 655

原创 Edit Distance

leetcode, Edit distance, 最优的O(N)额外空间实现

2014-03-28 22:32:00 458

原创 Longest Valid Parentheses

Given a string containing just the characters '(' and ')', find the length of the longest valid (well-formed) parentheses substring.For "(()", the longest valid parentheses substring is "()", wh

2014-03-28 00:06:10 594

原创 Plus One

Given a non-negative number represented as an array of digits, plus one to the number.The digits are stored such that the most significant digit is at the head of the list.用carri

2014-03-26 22:30:46 377

原创 Path Sum

Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum.For example:Given the below binary tree and sum

2014-03-24 23:00:20 346

原创 3Sum

Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero.Note:Elements in a triplet (a,b,c)

2014-03-22 12:05:51 392

原创 Binary Tree Preorder Traversal

Given a binary tree, return the preorder traversal of its nodes' values.For example:Given binary tree {1,#,2,3}, 1 \ 2 / 3return [1,2,3].Note: Recursive solution is tr

2014-03-21 22:45:47 328

原创 Search in Rotated Sorted Array

Suppose a sorted array is rotated at some pivot unknown to you beforehand.(i.e., 0 1 2 4 5 6 7 might become 4 5 6 7 0 1 2).You are given a target value to search. If found in the array return it

2014-03-21 22:33:34 348

原创 Reorder List

Given a singly linked list L: L0→L1→…→Ln-1→Ln,reorder it to: L0→Ln→L1→Ln-1→L2→Ln-2→…You must do this in-place without altering the nodes' values.For example,Given {1,2,3,4}, reorder it to {1,4

2014-03-20 22:26:59 335

原创 Convert Sorted List to Binary Search Tree

leetcode, 递归, Convert Sorted List to Binary Search Tree 的两种解法

2014-03-19 23:29:53 565

原创 Minimum Path Sum

Given a m x n grid filled with non-negative numbers, find a path from top left to bottom right which minimizes the sum of all numbers along its path.Note: You can only move either down or right at a

2014-03-17 19:56:18 373

原创 Valid Sudoku

Determine if a Sudoku is valid, according to: Sudoku Puzzles - The Rules.The Sudoku board could be partially filled, where empty cells are filled with the character '.'.A partially filled sudo

2014-03-15 22:48:00 850

原创 Subset

取当前集合的所有子集合,三种不同思路解法

2014-03-15 21:41:47 667

见识,吴军老师的新鲜大作

计算机从业人员,特别是作为工程师的开发工作者, 见识和通识认知是非常重要的。

2019-05-04

hadoop yarn

学习hadoop yarn的经典材料之一,很不错。mobi版本很清晰,可以在kindle上看

2014-06-21

这就是搜索引擎

完整扫描版, Learn search tech step by step!

2014-06-21

Concepts, Techniques, and Models of Computer Programming

The main goal of the book is to teach programming as a unified discipline with a scientific foundation that is useful to the practicing programmer. Let us look closer at what this means.

2011-07-05

C Plus Plus Template Meta programming

用来学习体会c++编译时计算技术以及语法分析的参考书目

2008-12-24

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除