码迷,mamicode.com
首页 >  
搜索关键字:tchar    ( 2435个结果
随手写了几行代码2
#include "stdafx.h"#include using namespace std;int _tmain(int argc, _TCHAR* argv[]){ cout << endl << "关于数组的问题" <<endl; int a[] = {1, 2, 3, 4, ...
分类:其他好文   时间:2014-07-22 22:47:55    阅读次数:196
LeetCode_38combinationSum [Combination Sum]
#pragma warning(disable:4996) #include <cstdio> #include <tchar.h> #include <Windows.h> #include <vector> using namespace std; /* submit time : 4 1.Runtime Error Last executed input: [1], 2...
分类:其他好文   时间:2014-07-22 09:03:04    阅读次数:285
LeetCode_41trap [Trapping Rain Water]
#pragma warning(disable:4996) #include <cstdio> #include <tchar.h> #include <Windows.h> /* submit time : 3 1.Time Limit Exceeded Last executed input: [] 2.Cant‘s remember request : G...
分类:移动开发   时间:2014-07-21 23:30:21    阅读次数:443
LeetCode_45permute [Permutations]
#pragma warning(disable:4996) #include <cstdio> #include <tchar.h> #include <Windows.h> #include <vector> using namespace std; /* submit time : 1 request : Given a collection of numbers, retu...
分类:其他好文   时间:2014-07-21 23:27:50    阅读次数:368
LeetCode_39combinationSum2 [Combination Sum II]
#pragma warning(disable:4996) #include <Windows.h> #include <tchar.h> #include <cstdio> #include <vector> using namespace std; /* submit time : 3 1. Runtime Error Last executed input: [5,3]...
分类:其他好文   时间:2014-07-21 13:26:03    阅读次数:250
整型范围内的斐波那契数列
#include "stdafx.h"int _tmain(int argc, _TCHAR* argv[]){ int a = 1, b = 1, c = 0; int max = 0x7FFFFFFF; printf("%d\n", max);// 打印一下整型的最大值 ...
分类:其他好文   时间:2014-07-18 23:36:57    阅读次数:191
获取当前系统用户
BOOL bAdminPrivilege = FALSE; TCHAR strUserName[80+1];DWORD nUserNameLength = 80;GetUserName(strUserName,&nUserNameLength);AfxMessageBox(strUserNa...
分类:其他好文   时间:2014-07-16 21:52:00    阅读次数:160
c++ boost库学习一:时间和日期
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
localtime和gmtime
// temp10.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include #include #include int _tmain(int argc, _TCHAR* argv[]){ //宇宙标准时间是格林威治时间。 //为了适应地球上的个...
分类:其他好文   时间:2014-07-11 21:53:38    阅读次数:304
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!