timer类#include #include "iostream"using namespace std;int _tmain(int argc, _TCHAR* argv[]){ boost::timer t; coutusing namespace std;int _tmain(i...
分类:
编程语言 时间:
2014-07-16 20:25:04
阅读次数:
224
1.定义一个和要排序数组a[10]长度一样的数组, 这里定义为10,index[10] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9},值为10个下标。2. 用冒泡排序,索引值代替小下标即可#include "stdafx.h"int _tmain(int argc, _TCHAR...
分类:
其他好文 时间:
2014-07-16 17:46:21
阅读次数:
244
FRIENDS题意:找出最大的朋友圈#include #define N 30005int fa[N], ans[N];int find(int x){ return fa[x] == x ? x : fa[x] = find(fa[x]);}int main(int argc, char *...
分类:
其他好文 时间:
2014-07-15 08:48:35
阅读次数:
214
曾在工作中遇见一个特别问题,就是在使用fstream中getline方法读数据读不出。如下: 1 #include 2 #include 3 #include 4 #include 5 6 using namespace std; 7 8 int _tmain(int argc, _TC...
分类:
编程语言 时间:
2014-07-14 15:16:23
阅读次数:
184
file/ls1.c 1 #include "apue.h" 2 #include 3 int 4 main(int argc, char *argv[]) 5 { 6 DIR *dp; 7 struct dirent *dirp; 8 if (...
分类:
其他好文 时间:
2014-07-14 14:20:31
阅读次数:
186
Add All题意:最优二叉树(priority_queue实现)#include #include #include using namespace std;int main(int argc, char *argv[]){ int n, i, j, a, sum[6000]; pri...
分类:
其他好文 时间:
2014-07-13 20:03:13
阅读次数:
218
Parentheses Balance题意:括号匹配#include #include int main(int argc, char *argv[]){ char ch, stack[200]; int i = 0, flag = 0, n, j; scanf("%d%*c", ...
分类:
其他好文 时间:
2014-07-13 20:01:12
阅读次数:
195
PHP编程中经常需要用到一些服务器的一些资料,特把$_SERVER的详细参数整理下,方便以后使用。
$_SERVER['PHP_SELF'] #当前正在执行脚本的文件名,与 document root相关。
$_SERVER['argv'] #传递给该脚本的参数。
$_SERVER['argc'] #包含传递给程序的命令行参数的个数(如果运行在命令行模式)。
$_SERVER['GATEW...
分类:
Web程序 时间:
2014-07-13 18:54:34
阅读次数:
323
在Linux下编程习惯了使用命令行参数,故使用VS2010时也尝试了一下。
新建项目,c++编写程序如下:
#include
#include
using namespace std;
int main(int argc,char*argv[])
{
ifstream fin(argv[1],ios::in);//输入方式打开文件
//ifstream fin;fin.open(argv...
分类:
其他好文 时间:
2014-07-12 21:01:31
阅读次数:
296
在触摸设备上可以使用Qt的手势事件
要激活手势事件,需要执行以下操作:
第一步,设置QT程序版本
QApplication
app(argc,
argv);
QCoreApplication::setApplicationVersion(QT_VERSION_STR);
第二步,为QWidget控件注册手势事件
QListQt::GestureType> ge...
分类:
移动开发 时间:
2014-07-12 20:30:44
阅读次数:
807