08 2014 档案
摘要:#include using namespace std;int combine(int a[], int n, int m){ m = m > n ? n : m; int* order = new int[m+1]; for(int i=0; i<=m; i++) order...
阅读全文
摘要:#include using namespace std;void myswap(int &a,int &b){ int temp = a; a = b; b = temp;}void fuc(int a[],int n,int len){ if(n==1) { for(int i=0;i<l...
阅读全文
摘要:--[[Description: FileName:bit.lua This module provides a selection of bitwise operations.History: Initial version created by 阵雨 2005-11-10...
阅读全文
摘要:在大多数Lua语法分析中可以获得这些标准Lua函数. 无可争辩, 我们可以查阅Lua网站, 但是一些少了的函数被Blizzard进行了调整. 下面列出了所有Lua函数. WoW API中的Lua注意在WoWAPI没有提供所有标准的Lua函数, 很显然, 操作系统以及文件I/O库是不支持的 ...
阅读全文