一款开源的C/C++ IDE(集成开发环境),基于wxWidgets GUI体系,跨平台支持。编辑器快捷键功能Ctrl+Z恢复上一次操作Ctrl+Shift+Z重复上一次操作F11切换头文件/源文件Ctrl+Shift+C注释高亮代码Ctrl+Shift+X反注释高亮代码Ctrl+Space/Ctr...
分类:
其他好文 时间:
2014-09-09 10:46:28
阅读次数:
236
站在中国码农的角度,将我自己知道或听说的比较有名的框架列了出来。 1.大汇总 ![在此输入图片描述][2] 2.国内使用最多的框架 ![在此输入图片描述][1] [1]: http://static.oschina.net/uploads/space/2014/0908/2...
分类:
Web程序 时间:
2014-09-09 09:13:38
阅读次数:
179
Determine whether an integer is a palindrome. Do this without extra space.思路:先找出x的有效最高位,然后从两侧依次比较最高位和最低位即可。 1 class Solution { 2 public: 3 bool is...
分类:
其他好文 时间:
2014-09-07 20:57:25
阅读次数:
206
Length of Last Word
Total Accepted: 17518 Total
Submissions: 59526My Submissions
Given a string s consists of upper/lower-case alphabets and empty space characters '
', return the lengt...
分类:
其他好文 时间:
2014-09-07 16:02:15
阅读次数:
197
A processing core comprising instruction execution logic circuitry and register space. The register space to be loaded from aVMCS, commensurate with a...
分类:
其他好文 时间:
2014-09-07 10:57:05
阅读次数:
256
CREATE BIGFILE TABLESPACE "DEMO"
DATAFILE ‘+DATA‘
SIZE 256M
AUTOEXTEND ON
NEXT 256M
MAXSIZE UNLIMITED
LOGGING
EXTENT MANAGEMENT LOCAL
SEGMENT SPACE MANAGEMENT AUTO CREATE USER "DEMO" PROFIL...
分类:
数据库 时间:
2014-09-06 22:38:54
阅读次数:
235
WebStorm 默认Ctrl+Space代码提示无效,修改为Alt+/ 1.Ctrl+Shift+a调出面板
2.输入key?map过滤出快捷键设计菜单
3.输入basic过滤出提示的快捷键
4.在过滤项上右键添加快捷键...
分类:
Web程序 时间:
2014-09-06 20:05:24
阅读次数:
333
Word Break
Given a string s and a dictionary of words dict, determine if s can be segmented into a space-separated sequence of one or more dictionary words.
For example, given
s = "leetcode",...
分类:
其他好文 时间:
2014-09-06 18:46:33
阅读次数:
206
Locally vs. Dictionary Managed Tablespaces整理自:http://www.orafaq.com/node/3.When Oracleallocates space to a segment (like a table or index), a group of...
分类:
数据库 时间:
2014-09-06 13:37:03
阅读次数:
286
Follow up for "Unique Paths":Now consider if some obstacles are added to the grids. How many unique paths would there be?An obstacle and empty space i...
分类:
其他好文 时间:
2014-09-06 05:27:32
阅读次数:
203