上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 95 下一页
摘要: #include#include #include using namespace std;int main(void){ string str("babccbabcaabcccbabccabcabcabbabcc"); int num = 0; size_t... 阅读全文
posted @ 2014-09-22 00:01 byfei 阅读(35) 评论(0) 推荐(0) 编辑
摘要: linux ifconfig 显示127.0.0.1 这个问题的出现是继"Linode通过克隆平移服务器系统和数据以及保留IP地址"在迁移机房数据的时候出现的,以前我也有记得玩过迁移数据到不同的机房,也没有出现这样的问题。这次在迁移完毕之后IP地址PING... 阅读全文
posted @ 2014-09-21 02:09 byfei 阅读(53) 评论(0) 推荐(0) 编辑
摘要: ./configure --prefix=/opt/gmp-4.3.2 ./configure --prefix=/opt/mpfr-2.4.2 --with-gmp=/opt/gmp-4.3.2 ./configure --prefix=/opt/m... 阅读全文
posted @ 2014-09-20 23:04 byfei 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 师昱峰 那年年初,他还在中央气象局工作,酷爱研究网络技术,而且境界颇高。因此一不留神竟被网友吴泳铭怂恿入伙。在北京孔乙己餐厅,他第一次见到吴泳铭的“带头大哥”马云。当时马云正准备杀回杭州第三次创业。马云的激情,深深震撼了师昱峰。 “坦白说,当时我确实没听懂马云说的话。但是我相信吴泳铭,相信他总不... 阅读全文
posted @ 2014-09-20 23:03 byfei 阅读(273) 评论(0) 推荐(0) 编辑
摘要: //============================================================================// Name : goodmorning.cpp// Author : byfei// Version :... 阅读全文
posted @ 2014-09-15 03:13 byfei 阅读(107) 评论(0) 推荐(0) 编辑
摘要: ./commonHead.h:1: error: stray ‘\357’ in program ./commonHead.h:1: error: stray ‘\273’ in program ./commonHead.h:1: error: stray ‘... 阅读全文
posted @ 2014-09-15 00:48 byfei 阅读(48) 评论(0) 推荐(0) 编辑
摘要: VMWARE无缝模式(Unity),Unity模式属于虚拟机和真实机混合的一种方式,让虚拟的系统像嵌入在macosx系统下的一样,开始菜单,窗口都是独立打开的,不会像在一个虚拟桌面里面一样.你可以在某种程度上控制工作站的显示器和它们的应用程序,例如,你可以使用全屏模式来隐藏宿主机的用户界面,或者... 阅读全文
posted @ 2014-09-14 20:33 byfei 阅读(2666) 评论(0) 推荐(0) 编辑
摘要: local tst = 999999999999999local strtest1 = "test%d"local strtest2 = "test%.0f"print(string.format(strtest1,tst))print(string.format(strtest2,tst)) ... 阅读全文
posted @ 2014-09-02 11:25 byfei 阅读(402) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std;int combine(int a[], int n, int m){ m = m > n ? n : m; int* order = new int[m+1]; for(int i=0; i<=m; i++) order... 阅读全文
posted @ 2014-08-25 04:32 byfei 阅读(1166) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std;void myswap(int &a,int &b){ int temp = a; a = b; b = temp;}void fuc(int a[],int n,int len){ if(n==1) { for(int i=0;i<l... 阅读全文
posted @ 2014-08-24 15:43 byfei 阅读(143) 评论(0) 推荐(0) 编辑
上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 95 下一页