本文是通过学习左耳朵皓帝的文章,详见:http://blog.csdn.net/haoel1.使用gdbgdb主要是用来调试c和c++程序,首先在编译前我们先把调试信息加到可执行程序当中,使用参数
-g 可以实现这一点。dzhwen@deng:~/first$ gcc -g tst.c -o tst...
分类:
数据库 时间:
2014-06-07 03:36:19
阅读次数:
320
Given an array of non-negative integers, you
are initially positioned at the first index of the array.Each element in the
array represents your maximu...
分类:
其他好文 时间:
2014-06-04 20:58:25
阅读次数:
296
-- 转存表中的数据`forum_post`INSERT INTO `forum_post`
(`pid`, `fid`,`tid`, `first`, `author`, `authorid`, `subject`, `dateline`,
`message`,`useip`, `invisibl...
分类:
数据库 时间:
2014-05-30 09:58:50
阅读次数:
348
MS SqlServer: 1 2 insert into PERSON 3
(PER_FIRST_NAME, PER_LAST_NAME, 4 PER_BIRTH_DATE, PER_WEIGHT_KG, PER_HEIGHT_M) 5
values 6 ...
分类:
Web程序 时间:
2014-05-30 05:52:41
阅读次数:
283
大量数据流动是web应用性能问题常见的原因,而缓存被广泛的用于优化数据库应用。cache被设计为通过保存从数据库里load的数据来减少应用和数据库之间的数据流动。数据库访问只有当检索的数据不在cache里可用时才必要。hibernate可以用两种不同的对象缓存:first-level
cache 和...
分类:
编程语言 时间:
2014-05-29 23:12:43
阅读次数:
349
Hiding the C# application to the system tray is
quiet straight forward. With a few line of codes in C# and you can accomplish
this. First you will nee...
分类:
移动开发 时间:
2014-05-29 17:59:38
阅读次数:
311
广度优先搜索&深度优先搜索(Breadth First Search &
Depth First
Search)BFS优缺点:同一层的所有节点都会加入队列,所以耗用大量空间;仅能非递归实现;相比DFS较快,空间换时间;适合广度大的图;空间复杂度:邻接矩阵O(N^2);邻接表O(N+E);时间复杂度:...
分类:
其他好文 时间:
2014-05-29 15:33:14
阅读次数:
407
Environment, Ubuntu 14.04set up guideSet up
cool compiler1. sudo apt-get install flex bison build-essential csh
openjdk-6-jdk libxaw7-dev libc6-i3862....
分类:
其他好文 时间:
2014-05-29 15:09:43
阅读次数:
578
1:标准输出;2:错误输出1,exec启动一个新的shell将STDOUT文件描述符重定向到文件#!/bin/shecho
"test exec..."exec > out.txt exec 2> out.errorecho "this is the first
line"#故意生成错误信息,将输出...
分类:
系统相关 时间:
2014-05-29 10:28:51
阅读次数:
326
背景以Code First方式编写简单代码,按源码执行过程,逐步讲解Entity
Framework工作原理。本系列博文系我学习Entity Framework 6 Code
First的总结之作。学习过程中参考了大量MSDN资料,因参考资料过多,且皆可从EF主页索引到,故不一一列举。所有阅读过的正...
分类:
其他好文 时间:
2014-05-28 18:40:06
阅读次数:
641