webstorm: http://www.cr173.com/html/18854_all.html
IntelliJ IDEA:
aptana:专为前端开发
Brackets: 强大免费的开源跨平台Web前端开发工具IDE,Adobe开源,很简洁,但是不支持折叠代码等
http://www.iplaysoft.com/brackets.html 下载: http://brackets.i...
分类:
其他好文 时间:
2015-06-07 21:39:43
阅读次数:
135
题目大意:定义在集合{0,1}\{0,1\}上的运算符“→\rightarrow”,定义如下:
0→0=10\rightarrow 0=1
0→1=10\rightarrow 1=1
1→0=01\rightarrow 0=0
1→1=11\rightarrow 1=1
现在给定一个表达式a1→a2→a3→...→ana_1\rightarrow a_2\rightarrow a_3\ri...
分类:
其他好文 时间:
2015-06-05 15:51:16
阅读次数:
106
Valid Parentheses
题目:
Given a string containing just the characters ‘(‘, ‘)’, ‘{‘, ‘}’, ‘[’ and ‘]’, determine if the input string is valid.
The brackets must close in the correct order, “()”...
分类:
其他好文 时间:
2015-06-05 14:07:10
阅读次数:
117
Given a string containing just the characters '(', ')',
'{', '}', '[' and ']', determine if the input string is valid.
The brackets must close in the correct order, "()" and "()[]{}" are all valid b...
分类:
其他好文 时间:
2015-06-03 10:02:51
阅读次数:
141
先上题目:
Given a string containing just the characters '(', ')', '{', '}', '[' and ']',
determine if the input string is valid.
The brackets must close in the correct order, "()" and "()[]{}" a...
分类:
编程语言 时间:
2015-05-28 09:32:29
阅读次数:
206
何为CSScomb官方网站只有一句描述:
Makes your code beautiful(让你的代码更漂亮)
通俗点讲:
CSScomb是用来排版CSS代码的…可以说是格式化插件,依赖nodejs
获取CSScomb–这不是今天的话题官方网站: CSScomb
支持许多编辑器,比如Sublime/Atom/brackets等
第三方CSScomb—这才是今天的话题昨天写了篇CSS3的...
分类:
Web程序 时间:
2015-05-26 12:41:48
阅读次数:
323
Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.The brackets must close in the c...
分类:
其他好文 时间:
2015-05-22 09:24:19
阅读次数:
100
思路:假设要求区间[i,j]的最长匹配字串,它必然可以从[i,j-1]转移而来,有可能是s[j]与s[i]发生“关系”(匹配或不匹配),一直到s[j-1],若不发生“关系”,即s[j]跟自己发生“关系”,用for循环枚举所有的可能,取最大值。
代码:
#include
#include
#include
using namespace std;
char s[105];
int dp[105...
分类:
其他好文 时间:
2015-05-17 07:08:38
阅读次数:
143
先贴一段C++标准(ISO/IEC 14882:2003):5.2.1 Subscripting:1 A postfix expression followed by an expression in square brackets is a postfix expression. One of t...
分类:
其他好文 时间:
2015-05-15 21:17:21
阅读次数:
132
Given a string containing just the characters'(',')','{','}','['and']', determine if the input string is valid.The brackets must close in the correct ...
分类:
其他好文 时间:
2015-05-13 08:47:31
阅读次数:
145