自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

琼华

琼华高阁赏东菊

  • 博客(38)
  • 资源 (14)
  • 问答 (6)
  • 收藏
  • 关注

原创 Largest Number

Largest Number

2015-01-15 15:27:19 3736

原创 Two Sum

Two Sum

2015-01-12 17:26:33 3732

原创 Word Ladder II

Word Ladder II

2015-01-12 09:44:07 4360 1

原创 Word Ladder

Word Ladder

2015-01-10 20:40:03 4113

原创 Binary Tree Zigzag Level Order Traversal

Given a binary tree, return the zigzag level order traversal of its nodes' values. (ie, from left to right, then right to left for the next level and alternate between).For example:Given binary

2015-01-10 16:09:05 3799

原创 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}, 3 / \ 9 20

2015-01-10 15:53:26 3716

原创 Maximum Depth of Binary Tree

求树的深度

2015-01-10 15:42:28 3972

原创 Binary Tree Level Order Traversal II

Binary Tree Level Order Traversal II

2015-01-10 15:15:16 3748

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

2015-01-09 20:30:11 3913

原创 Balanced Binary Tree

Balanced Binary Tree

2015-01-09 19:15:05 4024

原创 Minimum Depth of Binary Tree

Minimum Depth of Binary Tree

2015-01-09 18:05:51 3732

原创 Path Sum II

Path Sum II

2015-01-09 16:01:10 4116

原创 Path Sum

Path Sum

2015-01-09 15:29:55 4116

原创 Populating Next Right Pointers in Each Node II

Populating Next Right Pointers in Each Node II

2015-01-09 15:12:50 3849

原创 Populating Next Right Pointers in Each Node

Populating Next Right Pointers in Each Node

2015-01-09 15:01:01 3877

原创 Pascal's Triangle II

Pascal's Triangle II

2015-01-09 10:55:49 3710

原创 Pascal's Triangle

Pascal's Triangle

2015-01-09 08:56:14 3931

原创 Triangle

Triangle

2015-01-09 08:54:34 4470

原创 Valid Palindrome

Valid Palindrome

2015-01-09 07:37:46 3687

原创 Best Time to Buy and Sell Stock II

Best Time to Buy and Sell Stock II

2015-01-08 16:08:30 3720

原创 Best Time to Buy and Sell Stock

Best Time to Buy and Sell Stock

2015-01-08 15:41:01 3884

原创 Binary Tree Maximum Path Sum

Binary Tree Maximum Path Sum

2015-01-08 15:02:23 3847

原创 Longest Consecutive Sequence

Longest Consecutive Sequence

2015-01-08 09:52:37 3679

原创 Sum Root to Leaf Numbers

Given a binary tree containing digits from 0-9 only, each root-to-leaf path could represent a number.An example is the root-to-leaf path 1->2->3 which represents the number 123.Find the tota

2015-01-08 07:56:17 3718

原创 Surrounded Regions

Given a 2D board containing 'X' and 'O', capture all regions surrounded by 'X'.A region is captured by flipping all 'O's into 'X's in that surrounded region.For example,一道类似围棋的问题,不能逃出X棋子的包

2015-01-07 14:33:54 4026

原创 Binary Search Tree Iterator

Binary Search Tree Iterator

2015-01-06 09:04:47 3844

原创 Find Minimum in Rotated Sorted Array II

Find Minimum in Rotated Sorted Array II

2015-01-06 08:42:24 3859

原创 Find Minimum in Rotated Sorted Array

Find Minimum in Rotated Sorted Array

2015-01-06 08:31:19 3661

原创 Gas Station

There are N gas stations along a circular route, where the amount of gas at station i is gas[i].You have a car with an unlimited gas tank and it costs cost[i] of gas to travel from station i to

2015-01-05 15:56:06 3784

原创 Candy

CandyThere are N children standing in a line. Each child is assigned a rating value.

2015-01-05 13:12:25 3665

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

2015-01-04 20:50:22 3762

原创 Single Number

Given an array of integers, every element appears twice except for one. Find that single one.Note:Your algorithm should have a linear runtime complexity. Could you implement it without using ext

2015-01-04 16:11:36 3651

原创 Linked List Cycle II

Given a linked list, return the node where the cycle begins. If there is no cycle, return null.Follow up:Can you solve it without using extra space?/** * Definition for singly-linked list. *

2015-01-04 15:19:25 3626

原创 Linked List Cycle

Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?/** * Definition for singly-linked list. * class ListNode { * int val; *

2015-01-04 14:26:10 3643

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

2015-01-04 11:24:25 3667

原创 Binary Tree Preorder Traversal

Binary Tree Preorder TraversalGiven a binary tree, return the preorder traversal of its nodes' values.For example:Given binary tree {1,#,2,3},

2015-01-04 09:22:06 3712

原创 Binary Tree Postorder Traversal

Binary Tree Postorder TraversalGiven a binary tree, return the postorder traversal of its nodes' values.For example:Given binary tree {1,#,2,3},

2015-01-04 08:34:38 3658

原创 LRU Cache

Design and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations: get and set.get(key) - Get the value (will always be positive) of the key if

2015-01-03 20:33:30 3704

X64-memcached

memcached的Windows-x64版本的

2016-05-22

Git权威指南视频教程

Git是一个分布式的版本控制系统,最初由Linus Torvalds编写,用作Linux内核代码的管理。在推出后,Git在其它项目中也取得了很大成功,尤其是在Ruby社区中。目前,包括Rubinius和Merb在内的很多知名项目都使用了Git。Git同样可以被诸如Capistrano和Vlad the Deployer这样的部署工具所使用。

2015-10-24

saxpath.jar

出现错误java.lang.NoClassDefFoundError: org/saxpath/SAXPathException 那么把saxpath.jar文件加到你的classpath就OK了,希望帮到你

2015-08-07

《Java核心技术 卷Ⅱ 高级特性 原书中文第8版》.z01

《Java核心技术 卷Ⅱ 高级特性 原书中文第8版》第一部分

2015-05-11

html学习笔记

HTML基础知识汇总,可以作为小巧的工具书看,不求大全,只求能查阅

2015-05-11

php学习笔记

php基础知识学习笔记,可以作为一个电子书看

2015-05-11

MySql学习笔记

MySql学习时的笔记分享,希望可以帮到有缘人

2015-05-11

CSS基础知识学习笔记

学习CSS基础知识时自己做的笔记,希望帮到有缘人

2015-05-11

MiniJre制作小工具

一个迷你jre工具,帮助你瘦身jre,此工具即是用此工具制作而成,执行文件+JVM 8M完美带着JRE飞起来,

2014-08-12

javax.mail

java邮件开发所必须的,从官网下载而来,需要的朋友们拿去吧

2014-07-20

算法分析与设计小程序

这是在上算法分析与设计课 自己写的一些小代码 不好之处 请大家见谅

2012-01-06

智能小车设计

相信初学电子的都会热衷智能小车的制作 欢迎大家分享

2012-01-06

红外避障小车

电子设计中的经典题目 红外避障设计 欢迎大家使用 无私奉献 只为大家学习

2012-01-06

北风数据库

这是 SQLserver自带的数据库 无私奉献 只为方便大家学习

2012-01-06

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

TA关注的人

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