自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

tomkboy的专栏

个人笔记

  • 博客(9)
  • 资源 (2)
  • 收藏
  • 关注

原创 Binary Tree Level Order Traversal

Given a binary tree, return the level order traversal of its nodes' values. (ie, from left to right, level by level).For example:Given binary tree {3,9,20,#,#,15,7}, return its level order tra

2014-07-04 21:31:26 397

原创 Binary Tree Postorder Traversal

题目描述:Given a binary tree, return the postorder traversal of its nodes' values.For example:Given binary tree {1,#,2,3}, return [3,2,1].Note: Recursive solution is trivial, could you do it i

2014-07-04 21:11:43 291

原创 Binary Tree Preorder Traversal

题目描述:Given a binary tree, return the preorder traversal of its nodes' values.For example:Given binary tree {1,#,2,3},return [1,2,3].Note: Recursive solution is trivial, could you do it itera

2014-07-04 20:39:08 353

原创 Binary Tree Inorder Traversal

题目描述

2014-07-04 20:12:09 359

原创 Reverse Integer

Reverse digits of an integer.Example1: x = 123, return 321Example2: x = -123, return -321

2014-07-04 13:10:56 317

原创 Longest Palindromic Substring

题目描述:

2014-07-04 12:32:48 305

原创 Add Two Numbers

题目描述:You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as

2014-07-04 11:08:08 383

原创 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

2014-07-04 10:33:26 380

原创 LeetCode Two Sum

题目描述:Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of the two numbers such that they add up to the target

2014-07-04 09:14:38 354

C++程序设计语言答案

C++程序设计语言(特别版)习题答案 特别版,是贝尔实验室的那本书。有点深习题。

2013-07-30

mumps user guide

mumps user guide说明文档,主要用于大型稀疏矩阵。

2013-07-30

空空如也

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

TA关注的人

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