1、 递归算法:quicksort.cpp#include using namespace
std;void Swap(int a[],int i,int j){ int temp=a[i]; a[i] = a[j]; a[j] = temp;}int
Partition(int a[],int l...
分类:
其他好文 时间:
2014-05-27 02:29:55
阅读次数:
274
源码://HeapSort.cpp#include using namespace
std;//about heap://the last leaf node is a[n-1]//the last non-leaf node is
a[n/2-1];// a[i]// ...
分类:
其他好文 时间:
2014-05-27 02:21:23
阅读次数:
240
算法源码://BubbleSort.cpp#include using namespace
std;void BubbleSort(int a[], int n){ for(int i=n-1;i>0;i--) { for(int
j=0;ja[j+1]) { int tmp = a[j...
分类:
其他好文 时间:
2014-05-27 02:07:07
阅读次数:
223
类的定义class
Date//用class定义一个类{public://公有成员:内部和外部都可以访问 void SetDate(int y,int m, int d); int
IsLeapYear();//成员函数 void Print();private://私有成员:内部...
分类:
其他好文 时间:
2014-05-27 01:06:01
阅读次数:
280
在Android.mk文件的LOCAL_SRC_FILES后面加入包含该类或函数的文件,用\隔开,\后换行继续添加例如LOCAL_SRC_FILES :=
NDKTest.cpp\bncore.c\bn_error.c\bn_fast_mp_invmod.c\bn_fast_mp_montgomer...
分类:
其他好文 时间:
2014-05-24 01:30:48
阅读次数:
1159
一、#define的基本用法1.#define命令剖析1.1
#define的概念#define命令是C语言中的一个宏定义命令,它用来将一个标识符定义为一个字符串,该标识符被称为宏名,被定义的字符串称为替换文本。该命令有两种格式:一种是简单的宏定义,另一种是带参数的宏定义。(1)简单的宏定义#def...
分类:
其他好文 时间:
2014-05-19 19:00:00
阅读次数:
263
一、HelloWorld 1.修改窗口属性: main.cpp 1: CCEGLView *
eglView = CCEGLView::sharedOpenGLView(); 2:
eglView->setViewName("HelloCpp");//窗口名字 3: eglView->setFram...
分类:
其他好文 时间:
2014-05-19 18:32:23
阅读次数:
269
本文参考《Android系统源代码情景分析》,作者罗升阳。
一、测试代码:
~/Android/external/binder/server
----FregServer.cpp
~/Android/external/binder/common
----IFregService.cpp
----IFreg...
分类:
移动开发 时间:
2014-05-18 18:21:12
阅读次数:
475
1.首先要会普通的cpp 打包成Android APK
以下所说的是在cocos2d-x 2.2.2 或者 2.3 版本中。本文在Eclipse总用ndk编译cocos2d-x。
老生常谈cocos2d-x JSB不是简单的js代码,涉及到C++代码,如果是Android的话又涉及到Java代码,有点复杂,如果搞过Android下的Jni的话会熟悉些。可以看下这篇文章:《Android J...
分类:
移动开发 时间:
2014-05-18 03:35:24
阅读次数:
412