Spiral Matrix IIGiven an integern, generate a square matrix filled with elements from 1 ton2in spiral order.For example,Givenn=3,You should return the...
分类:
其他好文 时间:
2014-12-08 22:36:48
阅读次数:
199
一,使用maven创建项目原型mvn archetype:generate进入交互模式创建项目原型,根据网速不同,跳出设置选项的时间不定第一个选项直接Enter即可,表示使用默认值502,后面的如法炮制,直到设置我们需要的groupId,artifactId,version为止。我的设置为:grou...
分类:
编程语言 时间:
2014-12-08 17:17:59
阅读次数:
266
9.6 实现一种算法,打印n对括号的全部有效组合(即左右括号正确配对)。类似leetcode:Generate Parentheses解法:从头开始构造字符串,从而避免出现重复字符串。在这个解法中,逐一加入左括号和右括号,只有字符串仍然有效。每次递归调用,都会有个索引指向字符串的某个字符。我们需要选...
分类:
其他好文 时间:
2014-12-08 09:15:06
阅读次数:
156
运行 cmd mvn archetype:generate -DgroupId=com.mycompany.app -DartifactId=my-app -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false...
分类:
其他好文 时间:
2014-12-07 08:59:57
阅读次数:
291
Givennpairs of parentheses, write a function to generate all combinations of well-formed parentheses.For example, givenn= 3, a solution set is:"((()))...
分类:
其他好文 时间:
2014-12-05 22:39:10
阅读次数:
142
Given a string containing just the characters'('and')', find the length of the longest valid (well-formed) parentheses substring.For"(()", the longest...
分类:
其他好文 时间:
2014-12-04 21:12:36
阅读次数:
269
Given an integer n, generate a square matrix filled with elements from 1 to n2 in spiral order.
For example,
Given n = 3,
You should return the following matrix:
[
[ 1, 2, 3 ],
[ 8, 9, 4 ],
[ 7...
分类:
其他好文 时间:
2014-12-04 14:00:17
阅读次数:
174
Givenn, generate all structurally uniqueBST's(binary search trees) that store values 1...n.For example,Givenn= 3, your program should return all 5 uni...
分类:
其他好文 时间:
2014-12-03 22:46:11
阅读次数:
192
最近学了ruby,快乐编程果真名不虚传。尝试写了个生成随机数的脚本,算是练手。
一、功能需求
输入随机数区间[a,b), 和数据规模c,输出c个位于区间内的随机整数,每个输出一行。
二、编写代码
#! /usr/bin/ruby
# Example:
# genrand 3 8 4
# will generate 4 Integer range from 3 to 8
#This...
分类:
其他好文 时间:
2014-12-03 21:25:13
阅读次数:
171
Sprint 3(12.03-12.16)最主要的任务是完成structure-based ASC art generation,也是我们最初设想中的一个很有亮点的feature。除此之外,还包括一些bug的修复、已有功能的优化等,并添加以下新的功能:Generate color ASC artGe...
分类:
其他好文 时间:
2014-12-03 20:56:39
阅读次数:
176