1 #include 2 #include 3 using namespace std; 4
class people 5 { 6 public: 7 string name; 8 int age; 9 virtual void print();10
};11 12...
分类:
其他好文 时间:
2014-04-28 09:04:54
阅读次数:
690
1.变量的命名变量名由字母、数字或下划线组成,首字母必须是字母或下划线。2.变量的赋值Python中的变量不需要声明,变量的赋值操作既是变量声明和定义的过程。每个变量在内存中创建,都包括变量的标识,名称和数据这些信息。每个变量在使用前都必须赋值,赋值后该变量才会被创建。3.局部变量局部变量是只能在函...
分类:
编程语言 时间:
2014-04-28 07:09:02
阅读次数:
604
Problem illustration:given a n*n matrix, print
its transition, for example , 90 degree clockwise,using only constant additional
spaceanalysis:using O(...
分类:
其他好文 时间:
2014-04-28 03:22:07
阅读次数:
513
首先准备.xpm图标文件,如果程序文件夹中没有,那么可以根据自己喜好到网上下载喜欢的图标,不要太大,然后将其改为.xpm文件(直接改了后缀名就行)。然后打开/usr/share/applications/目录,可以看到里面有很多.desktop文件,我们要做的事情就是建立自己的.desktop文.....
分类:
其他好文 时间:
2014-04-27 21:11:32
阅读次数:
609