8.冒泡排序算法的时间复杂度是什么? 时间复杂度是O(n^2)。 1 #include "stdafx.h" 2 #include 3 using namespace std; 4 void Swap(int &a, int &b) 5 { 6 int temp = a; 7 a ...
分类:
其他好文 时间:
2014-08-31 10:23:51
阅读次数:
133
#includevoid ShellSort(int array[],int length){ int i,j,h,temp; for(h=length/2;h>0;h=h/2) { for(i=h;i=0;j-=h) { ...
分类:
其他好文 时间:
2014-08-30 18:55:09
阅读次数:
158
#includevoid AdjustMinHeap(int *a,int pos,int len){ int temp,child; for(temp=a[pos];pos*2+1=0;i--) AdjustMinHeap(array,i,len-1); for(i=le...
分类:
其他好文 时间:
2014-08-30 17:36:59
阅读次数:
147
源:http://www.cnblogs.com/zhcncn/archive/2013/05/20/3089084.html1. char*->string(1)直接转换const char* nodename;string temp = nodename; string temp2(nodena...
分类:
编程语言 时间:
2014-08-30 13:51:59
阅读次数:
317
直接输入tcrmgr查看用户帮助-----------------------------------------------------------------------------------------------------------------1.先启动一个测试用的ttserver注意使用的所有路径都是绝对路径!补充:目录temp和ulog需要自己手动提前创建#mkdirtempulogttser..
分类:
其他好文 时间:
2014-08-29 18:33:28
阅读次数:
323
本人升级SDK后,以前项目的所有XML在graphicallayout都无法预览了,觉得有点纳闷,就网上搜了一下,网上给出了两种方案:方案一:去SDK目录下删掉Temp这个文件夹,并关掉eclipse重新打开。处理结果:我按照这种说法做了,无效。方案二:到eclipse的安装目录下的eclipse\plugins..
分类:
移动开发 时间:
2014-08-29 11:13:18
阅读次数:
229
void BubbleSort(int R[],int n) //冒泡排序 时间复杂度O(n2)
{
int i,j,temp,flag;
for(i = n;i>=2;i--)
{
flag = 0;
for(j=2;jR[j])
{
temp = R[j-1];
R[j-1] = R[j];
R[...
分类:
编程语言 时间:
2014-08-28 22:45:43
阅读次数:
269
将字符串CString类型转换成时间类型:
//转换时间,替代CStringToDateTime(temp);
int nYear, nMonth, nDate, nHour, nMin;
float nSec;
sscanf(temp, "%d-%d-%d %d:%d:%f", &nYear, &nMonth, &nDate...
分类:
其他好文 时间:
2014-08-28 16:18:39
阅读次数:
201
一、更新Android SDK 出错 Failed to rename directory \temp\ToolPackage.old01打算更新AndroidSDK 版本到 Android SDK Tools 20,打开SDK Manager.exe 开始更新,结果安装时弹出错误提示:Failed...
分类:
移动开发 时间:
2014-08-28 13:03:49
阅读次数:
160
1、任意位的整数转化为字符串 #include
#include
using namespace std;
char * NumberToString(int n)
{ int nn=n,i=0; while(nn!=0) { nn=nn/10; i++; } char *temp=new char...
分类:
其他好文 时间:
2014-08-28 11:09:19
阅读次数:
226