1 //goal: heap sort 2 //time: 9/7/2014 3 //author: zrss 4 //reference: introduction to algorithms 5 6 #include 7 #include 8 9 #define MAX_DATA 10...
分类:
其他好文 时间:
2014-09-09 10:29:28
阅读次数:
233
站在中国码农的角度,将我自己知道或听说的比较有名的框架列了出来。 1.大汇总 ![在此输入图片描述][2] 2.国内使用最多的框架 ![在此输入图片描述][1] [1]: http://static.oschina.net/uploads/space/2014/0908/2...
分类:
Web程序 时间:
2014-09-09 09:13:38
阅读次数:
179
无数次遭受堆栈溢出折磨,随着系统变得复杂,故障点越来越难以查找!主要溢出情况如下:1,一般RAM最后两块空间是堆Heap和栈Stack,堆从下往上用,栈从上往下用,任意一个用完,都会进入对方的空间2,如果栈用完,进入堆的空间,这个时候系统是不会有任何异常的,也就是说,栈底没有什么意义。除非堆和栈指针...
分类:
其他好文 时间:
2014-09-07 23:46:55
阅读次数:
288
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
今天弄个简单的图片显示程序LinearLayout linearLayout =(LinearLayout)this.findViewById(R.id.LinearLayout1);
for(int i=0;i<imagePath.length;i++)
{
img[i]=new ImageView(this);
img[i]....
分类:
其他好文 时间:
2014-09-07 18:36:05
阅读次数:
172
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
1 class Heap{ 2 private: 3 int m[1000]; 4 int size; 5 public: 6 Heap(int s) :size(s){} 7 Heap(int *num, int s) :size(s){ 8 f...
分类:
其他好文 时间:
2014-09-07 15:58:55
阅读次数:
240
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