码迷,mamicode.com
首页 >  
搜索关键字:typedef    ( 8832个结果
[栈和队列]从中缀向后缀转换表达式
1 #include 2 #include 3 #include 4 #define INIT_STACK_SIZE 100 5 typedef struct 6 { 7 char * chOperator; 8 int dwtop; 9 }OPND;10 11 void I...
分类:其他好文   时间:2014-05-01 20:37:37    阅读次数:373
【线性表】一元多项式相乘
1 /* PRESET CODE BEGIN - NEVER TOUCH CODE BELOW */ 2 3 #include 4 #include 5 6 typedef struct node 7 { int coef, exp; //coe...
分类:其他好文   时间:2014-05-01 20:33:27    阅读次数:342
工科楼北面的那个坑
1 #include 2 #include 3 4 typedef struct mdata 5 { 6 int *pTime; 7 int width; 8 int hight; 9 struct mdata *pre; 10 st...
分类:其他好文   时间:2014-05-01 20:32:48    阅读次数:348
[栈和队列]括号匹配
1 #include 2 #include 3 #include 4 #define INIT_STACK_SIZE 100 5 typedef struct 6 { 7 char * chOperator; 8 int dwtop; 9 }OPND;10 11 void I...
分类:其他好文   时间:2014-05-01 20:32:11    阅读次数:366
创建进程时注入DLL
#include "stdafx.h"#include // 函数声明typedef BOOL (WINAPI* Proc_CreateProcessW)(LPCWSTR lpApplicationName, LPWSTR lpCommandLine, ...
分类:其他好文   时间:2014-05-01 20:05:48    阅读次数:400
typedef巧用和注意事项
-------------------------------------------------- typedef声明,简称typedef,为现有类型创建一个新的名字,或称为类型别名,在结构体定义,还有一些数组等地方都大量的用到。 它有助于创建平台无关类型,甚至能隐藏复杂和难以理解的语法 。使用typedef可编写出更加美观和可读的代码。所谓美观,意指typedef能隐藏笨拙的语法构造以...
分类:其他好文   时间:2014-05-01 17:28:24    阅读次数:308
ios消息
Class1 typedef struct objc_class *Class; 1 struct objc_class { 2 Class isa OBJC_ISA_AVAILABILITY; 3 4 #if !__OBJC2__ 5 Class super_class ...
分类:移动开发   时间:2014-05-01 07:13:10    阅读次数:502
linux多线程示例
1 #include 2 #include 3 #include 4 #include 5 6 typedef void* (*fun)(void*); 7 8 fun fun1, fun2; 9 10 pthread_mutex_t pmu = PTHREAD_MUTEX_INITI...
分类:编程语言   时间:2014-05-01 06:36:02    阅读次数:427
uva 11988 这题可以看出c++中string效率的底下
用c语言实现 #include #include #include using namespace std; typedef struct node { char x; struct node *next; }chan; chan *root = new chan; char a[100010]; int main() { while(scanf("%...
分类:编程语言   时间:2014-04-29 13:47:20    阅读次数:358
C语言之typedef详解
typedef详解...
分类:编程语言   时间:2014-04-29 13:44:21    阅读次数:368
8832条   上一页 1 ... 880 881 882 883 884 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!