上一页 1 2 3 4 5 6 7 8 9 ··· 26 下一页
摘要: 例如“abc”输出a,b,c,ab,ac,bc,abc#includevoid DFS(char str[],char ss[],int pos,int cnt,int n){ if(n==pos) { ss[cnt]='\0'; if(cnt!=0) pri... 阅读全文
posted @ 2014-08-30 18:23 calmound 阅读(1535) 评论(0) 推荐(0) 编辑
摘要: #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) { ... 阅读全文
posted @ 2014-08-30 17:41 calmound 阅读(123) 评论(0) 推荐(0) 编辑
摘要: #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... 阅读全文
posted @ 2014-08-30 16:55 calmound 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 当接触一新CPU时商家会首先描述它是RISC指令集,这意味着什么,从这个描述你能了解多少CPU特性信息?复杂指令集计算机(CISC) 长期来,计算机性能的提高往往是通过增加硬件的复杂性来获得.随着集成电路技术.特别是VLSI(超大规模集成电路)技术的迅速发展,为了软件编程方便和提高程序的运行速度,... 阅读全文
posted @ 2014-08-29 09:36 calmound 阅读(2579) 评论(0) 推荐(0) 编辑
摘要: #include#includeusing namespace std;//日期函数int days[12]={31,28,31,30,31,30,31,31,30,31,30,31};struct date{ int year,month,day;};//判闰年inline int leap(in... 阅读全文
posted @ 2014-08-28 12:16 calmound 阅读(424) 评论(0) 推荐(0) 编辑
摘要: struct ListNode{ int data; ListNode *lchild,*rchild;};void CreateBSTree(ListNode *B2_root,ListNode *BSTree_root){ if(BSTree_root==NULL) ... 阅读全文
posted @ 2014-08-27 21:44 calmound 阅读(1708) 评论(0) 推荐(0) 编辑
摘要: #include#include#includeusing namespace std;void GetNext(char *str,int next[]){ int j,k; j=0;k=-1;next[0]=-1; while(str[j]!='\0') { ... 阅读全文
posted @ 2014-08-25 19:26 calmound 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 1已知strcpy函数的原型是char *strcpy(char *strDest, const char *strSrc);其中strDest是目的字符串,strSrc是源字符串。a)不调用C++/C的字符串库函数,请写出函数strcpy。b)strcpy能把strSrc的内容复制到strDest... 阅读全文
posted @ 2014-08-25 16:42 calmound 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 节点解释:节点是场景图的基本元素。场景图的基本元素必须是节点对象或者是节点对象的子类。其中主要可以看到Layer、MenuItem、Scene、Sprite、TMXTiledMap(解析and渲染TMX地图)、ParticleSystem(粒子系统基类)等等Node是这些类的根类节点的基本操作创建节... 阅读全文
posted @ 2014-08-21 09:00 calmound 阅读(2629) 评论(0) 推荐(0) 编辑
摘要: 导演(Director) 一款游戏好比一部电影,只是游戏具有更强的交互性,不过它们的基本原理是一致的。所以在Cocos2dx中把统筹游戏大局的类抽象为导演(Director),Director是整个cocos2dx引擎的核心,是整个游戏的导航仪,游戏中的一些常用操作就是由Director来控制的... 阅读全文
posted @ 2014-08-20 21:01 calmound 阅读(2254) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 26 下一页