码迷,mamicode.com
首页 >  
搜索关键字:maxsize    ( 995个结果
导入贴图操作:处理贴图MaxSize和Format
using UnityEngine;using System.Collections;using UnityEditor;public class ImportModflyTextures : AssetPostprocessor{ private uint m_Version = 0; ...
分类:其他好文   时间:2014-05-28 21:20:56    阅读次数:427
判断资源贴图是否有alpha
/* modfly selected textures`s maxSize and ImportFormat bool hasAlpha = true; if(hasAlpha)then(texture.size/2 and trueColor)else(16bit) 2014.05.27*...
分类:其他好文   时间:2014-05-28 20:28:19    阅读次数:438
栈的基础操作——2,8,16进制的入栈——数组类型定义
#define stack_init_size 100 #define stackincrement 10 typedef int ElemType; typedef int status; const status error=0; const status ok=1; const status overflow=-2; const int MAXSIZE = 100; typedef st...
分类:其他好文   时间:2014-05-26 06:17:29    阅读次数:243
两栈共享空间的c语言实现
1. 两栈共享空间结构 typedef struct { SElemType data[MAXSIZE]; int top1; /* 栈1栈顶指针 */ int top2; /* 栈2栈顶指针 */ }SqDoubleStack;...
分类:编程语言   时间:2014-05-26 03:52:28    阅读次数:391
Queue1
1 #include 2 using namespace std; 3 //#define maxSize 20 4 template 5 class Queue 6 { 7 private : 8 // T data[maxSize]; 9 int maxSize;10 ...
分类:其他好文   时间:2014-05-26 02:50:09    阅读次数:267
c语言线性表
c语言的线性表,还没有完善 1 #include 2 #define MAXSIZE 100 //初始空间分配量 3 #define OK 1 4 #define ERROR 0 5 #define TRUE 1 6 #define FALSE 1 7 typedef int ElemTyp...
分类:编程语言   时间:2014-05-26 00:26:39    阅读次数:339
顺序循环队列的c语言实现
1. 循环队列的顺序存储结构 typedef struct { QElemType data[MAXSIZE]; int front; /* 头指针 */ int rear; /* 尾指针,若队列不空,指向队列尾元素的下一个位置 */ }SqQueue; 2. 初始化一个空队列Q Status InitQueue(SqQueue *Q) { Q->fr...
分类:编程语言   时间:2014-05-25 04:43:05    阅读次数:407
最长回文子串
一般求回文子串用的是Manacher算法,但是该算法只是简单判断回文,该题目中需要去除掉空格和标点,所以,自己用了动态规划(加剪枝,取出空号等)。 代码如下: //最长回文子串 动态规划 #include #include #include #include //for tolower #define MAXSIZE 5000 char str[MAXSIZE];//="Confucius...
分类:其他好文   时间:2014-05-21 16:00:30    阅读次数:211
数据结构——栈的类定义和实现
#include#include#include #include //使用库函数exit()using namespace std;templateclass Stack{ private: Type*data; //栈元素数组 int maxSize; /...
分类:其他好文   时间:2014-05-09 07:27:40    阅读次数:294
简单贪吃蛇
1. 定义snake类,#ifndef _CSNAKE_#define _CSNAKE_#include "stdafx.h"//蛇最大长度#define MAXSIZE 5000//蛇初始长度#define INITSIZE 5enum DIRECTION{ RIGHT = 0, U...
分类:其他好文   时间:2014-05-08 18:21:45    阅读次数:359
995条   上一页 1 ... 97 98 99 100 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!