自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(19)
  • 资源 (12)
  • 收藏
  • 关注

原创 LeetCode Anagrams My solution

Anagrams Given an array of strings, return all groups of strings that are anagrams.Note: All inputs will be in lower-case.public class Solution { public List anagrams(Str

2014-10-31 18:56:55 849

原创 Triangle LeetCode |My solution

Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.For example, given the following triangle[ [2], [3,4],

2014-10-27 15:24:57 908

原创 LeetCode Add Binary |My Solution

Given two binary strings, return their sum (also a binary string).For example,a = "11"b = "1"Return "100".Show TagsHave you been asked this question in an interview? 

2014-10-23 16:29:20 848

原创 Valid Palindrome

Valid Palindrome Total Accepted: 22728 Total Submissions: 99271My SubmissionsQuestion Solution Given a string, determine if it is a palindrome, considering only alphanumeric char

2014-10-14 16:57:31 1313

原创 LeetCode : atoi My solution

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 ca

2014-10-14 16:29:43 789

原创 Largest Rectangle in Histogram

Largest Rectangle in Histogram Total Accepted: 18582 Total Submissions: 86792My SubmissionsGiven n non-negative integers representing the histogram's bar height where the width of each b

2014-10-14 15:14:02 781

原创 LeetCode :Sudoku Solver

Sudoku Solver Total Accepted: 13937 Total Submissions: 66832My SubmissionsWrite a program to solve a Sudoku puzzle by filling the empty cells.Empty cells are indicated by the character

2014-10-13 22:22:37 2200 1

原创 Container With Most Water Leetcode

Container With Most Water Total Accepted: 18794 Total Submissions: 60105My SubmissionsGiven n non-negative integers a1, a2, ..., an, where each represents a point at coordinate (i, ai)

2014-10-13 12:13:27 663

原创 Longest Common Prefix LeetCode :Mysolution

Longest Common Prefix Total Accepted: 20172 Total Submissions: 74037My SubmissionsWrite a function to find the longest common prefix string amongst an array of strings.

2014-10-13 10:30:51 714

原创 Count and Say LeetCode:Mysolution

Count and Say Total Accepted: 17238 Total Submissions: 62821My SubmissionsThe count-and-say sequence is the sequence of integers beginning as follows:1, 11, 21, 1211, 111221, ...1 is

2014-10-12 10:56:03 803

原创 LeetCode: My solution:Restore IP Addresses

Given a string containing only digits, restore it by returning all possible valid IP address combinations.For example:Given "25525511135",return ["255.255.11.135", "255.255.111.35"]. (Order

2014-10-11 11:37:26 534

原创 Surrounded Regions LeetCode :My Solution

Surrounded Regions Total Accepted: 14948 Total Submissions: 105121My SubmissionsGiven a 2D board containing 'X' and 'O', capture all regions surrounded by 'X'.A region is captured by

2014-10-08 22:18:11 858

原创 LeetCode pow(x,n):My solution

Pow(x, n) Total Accepted: 24853 Total Submissions: 95818My SubmissionsImplement pow(x, n).public class Solution { public double pow(double x, int n) { if (x == 1.0)

2014-10-08 19:25:21 692

原创 LeetCode AresGod Solution :Palindrome Number

Palindrome Number Total Accepted: 23162 Total Submissions: 79751My SubmissionsDetermine whether an integer is a palindrome. Do this without extra space.click to show spoilers.Some hi

2014-10-04 11:44:47 650

原创 LeetCode My Solution: Minimum Depth of Binary Tree

Minimum Depth of Binary Tree Total Accepted: 24760 Total Submissions: 83665My SubmissionsGiven a binary tree, find its minimum depth.The minimum depth is the number of nodes along the

2014-10-04 10:22:50 884

原创 LeetCode My solution: N-Queens II

N-Queens II Total Accepted: 14252 Total Submissions: 42368My SubmissionsFollow up for N-Queens problem.Now, instead outputting board configurations, return the total number of distinct

2014-10-04 09:59:12 618

原创 LeetCode :Word Ladder II My Solution

Word Ladder II Total Accepted: 11755 Total Submissions: 102776My SubmissionsGiven two words (start and end), and a dictionary, find all shortest transformation sequence(s) from start to 

2014-10-03 23:25:07 1618

原创 My Solution: Word Ladder

Word LadderGiven two words (start and end), and a dictionary, find the length of shortest transformation sequence from start to end, such that:Only one letter can be changed at a tim

2014-10-02 20:37:14 1062

原创 LeetCode :My solution N-Queens

N-Queens Total Accepted: 15603 Total Submissions: 60198My SubmissionsThe n-queens puzzle is the problem of placing n queens on an n×n chessboard such that no two queens attack each other

2014-10-01 11:53:00 909

C语言程序设计题库单项选择题-100道.xls

这是计算机相关专业必须的C语言,此文档中由100道编程单项选择题及答案,很详细,入门的同学可以用来参考.也特别适合准备c的考试,基本上涵盖了主流的题目

2020-06-01

C语言程序设计填空题-40道 .xls

这是计算机相关专业必须的C语言,此文档中由40道编程题的填空版本及答案,很详细,入门的同学可以用来参考.也特别适合准备c的考试,基本上涵盖了主流的题目

2020-06-01

C程序设计题库编程题-100道.xls

这是计算机相关专业必须的C语言,此文档中由100道编程题及答案,很详细,入门的同学可以用来参考.也特别适合准备c的考试,基本上涵盖了主流的题目

2020-06-01

Slickedit Pro 2015 V20 全平台已测 windows linux mac os 全平台注册机 破解 Crack

这个注册机全平台都可用,包含 slickedit v18 v19 v20等等所有版本的,所有平台注册机一个文件全部解决。 找了好久才找到的! 非常好用! Windows 如果安装在C盘,请用管理员权限运行 操作步骤: 1. 选择对应的版本 2. 点Patch 选择文件 3. 点Generate Goodluck! Linux Mac 等平台的bin文件拷贝到windows底下patch。 Windows平台是vs.exe。 Linux 和Mac是vs。 已测 Windows X64 ,Mac X64,CentOS X64 Slickedit Pro 2015 V20 windows linux mac 全平台注册机 破解 Crack 全部已测

2016-04-27

Slickedit2015 V20 windows linux mac 全平台注册机 破解 Crack 全部已测

#Slickedit2015 V20 windows linux mac 全平台注册机 破解 Crack 全部已测 这个注册机全平台都可用,一个文件全部解决。 找了好久才找到的! 非常好用! Windows 如果安装在C盘,请用管理员权限运行 操作步骤: 1. 选择对应的版本 2. 点Patch 选择文件 3. 点Generate Goodluck! Linux Mac 等平台的bin文件拷贝到windows底下patch。 Windows平台是vs.exe。 Linux 和Mac是vs。 已测 Windows X64 ,Mac X64,CentOS X64 拿走不谢!

2015-12-17

93分钟学会LATEX2 LATEX2入门指南 使用

最近要用LATEX写东西,找了很多,还买了本书,但是因为时间比较紧,就没来得及看,在网上找速成,找了一堆,这个最好 最适合的!

2013-09-28

Git Community Book 中文版 GIT 指南 入门 操作手册

Git Community Book 中文版 GIT 指南 入门 操作手册

2013-06-25

slickedit 17 (2012)Linux win mac os 全系列 包含低版本的 破解 注册机 和谐 河蟹器

全面支持LINUx mac os ,win的Slickedit破解注册机,自己在三个环境下都试验过。 找了好久才找到 放出来大家一起用吧 真的是好用 用法,先把各个平台的VS 执行文件弄出来,然后用破解器破解下,生产LIc文件,OK enjoy! 用了就知道爽!

2013-02-05

树结构在N体问题中的应用

树结构在N体问题中的应用, a application used to solute the n-body problem

2012-10-07

基于Barnes+Hut算法的N-body问题模拟

基于Barnes+Hut算法的N-body问题模拟

2012-10-07

空空如也

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

TA关注的人

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