代码编辑工具 ????sublime(推荐emmet插件,html、css自动补全等功能) ????webstorm 断点调试工具 ????firebug ????angularjs batarang(chrome插件) 开发和调试工具 ????nodejs 版本管理...
分类:
其他好文 时间:
2014-09-12 02:34:33
阅读次数:
159
题目链接题意 : 给你一串由括号组成的串,让你添加最少的括号使该串匹配。思路 : 黑书上的DP。dp[i][j] = min{dp[i+1][j-1] (sh[i] == sh[j]),dp[i][k]+dp[k+1][j](i 2 #include 3 #include 4 5 using ...
分类:
其他好文 时间:
2014-09-11 22:16:52
阅读次数:
277
1,打开安装sublime下路径2 ,找到如下路径 Data\Packages\Emmet\emmet\snippets.json3,把找到的snippets.json这个文件用sublime打开,就可以看到配置的emmet快捷键,可以自己手动更改,改后记得重启sublime才生效打开的文件如下图:
分类:
其他好文 时间:
2014-09-09 20:01:59
阅读次数:
145
zen-Coding是一款快速编写HTML,CSS(或其他格式化语言)代码的编辑器插件,这个插件可以用缩写方式完成大量重复的编码工作,是web前端从业者的利器。 zen-Coding插件支持多种编辑器,如UltraEdit,Notepad++等。温馨提示:zen-Coding已经改名Emmet,并且...
分类:
其他好文 时间:
2014-09-09 18:09:09
阅读次数:
178
Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.The brackets must close in the c...
分类:
其他好文 时间:
2014-09-06 16:04:13
阅读次数:
191
Given a string containing just the characters'(',')','{','}','['and']', determine if the input string is valid.The brackets must close in the correct ...
分类:
其他好文 时间:
2014-09-03 22:29:47
阅读次数:
253
问题描述
Given a string containing just the characters '(', ')', '{', '}', '[' and ']',
determine if the input string is valid.
The brackets must close in the correct order, "()" and "()[]{}" ...
分类:
其他好文 时间:
2014-09-02 19:54:15
阅读次数:
150
原文链接:http://blog.csdn.net/lmmilove/article/details/9181323因为开始做web项目,所以最近在用sublime编辑器,知道了一个传说中的emmet,原名是zen coding。html神插件可以说是。文章部分内容转自http://www.cnbl...
分类:
其他好文 时间:
2014-09-02 17:27:54
阅读次数:
195
Given a string containing just the characters'(',')','{','}','['and']', determine if the input string is valid.The brackets must close in the correct ...
分类:
其他好文 时间:
2014-09-02 12:16:04
阅读次数:
192
题意:
给出一串括号
给出一些询问,问某个区间[l,r]内的能合法匹配的括号数有多少个
分析:
我们可以实现处理两个数组
sum[i] 1....i中已经能匹配的右括号的数目
left[i] 1....i中还不能匹配的左括号数目
这两个数组可以很简单的扫描一遍动态维护得出来
我们可以先求前缀和,即
1...m中有多少能匹配的右括号sum[m]
则,我们可以得到s...
分类:
其他好文 时间:
2014-08-31 15:54:31
阅读次数:
262