码迷,mamicode.com
首页 >  
搜索关键字:datatype missmatch    ( 1091个结果
_DataStructure_C_Impl:顺序循环队列
//_DataStructure_C_Impl:顺序循环队列 #include #include #define QueueSize 10 //定义顺序循环队列的最大容量 typedef char DataType; typedef struct Squeue{ //顺序循环队列的类型定义 DataType queue[QueueSize]; int front,rear; //队头指针...
分类:其他好文   时间:2015-08-05 06:41:32    阅读次数:116
_DataStructure_C_Impl:只有队尾指针的链式循环队列
//_DataStructure_C_Impl: #include #include #include typedef char DataType; typedef struct snode{ //链式堆栈结点类型定义 DataType data; struct snode *next; }LSNode; typedef struct QNode{ //只有队尾指针的链式循环队列类型定义 ...
分类:其他好文   时间:2015-08-05 06:40:53    阅读次数:192
_DataStructure_C_Impl:共享栈
// _DataStructure_C_Impl:共享栈 #include #include #define StackSize 100 typedef char DataType; //两个共享栈的数据结构类型定义 typedef struct { DataType stack[StackSize]; int top[2]; }SSeqStack; //共享栈的初始化操作 void In...
分类:其他好文   时间:2015-08-04 00:43:39    阅读次数:105
_DataStructure_C_Impl:顺序栈
// _DataStructure_C_Impl:顺序栈 #include #include #define StackSize 100 typedef char DataType; typedef struct{ DataType stack[StackSize]; int top; }SeqStack; //将栈初始化为空栈只需要把栈顶指针top置为 void InitStack(SeqS...
分类:其他好文   时间:2015-08-04 00:43:32    阅读次数:94
_DataStructure_C_Impl:链栈
//_DataStructure_C_Impl:链栈 #include #include typedef char DataType; typedef struct node{ DataType data; struct node *next; }LStackNode,*LinkStack; //将链栈初始化为空。动态生成头结点,并将头结点的指针域置为空 void InitStack(Lin...
分类:其他好文   时间:2015-08-04 00:41:11    阅读次数:98
jquery_Ajax
格式是:$.ajax({async : false,cache : false,type: 'POST',dataType : "xml",url: "ac14Action.do?method=getStauts",//请求的action路径error: function () {//请求失败处理函...
分类:Web程序   时间:2015-08-02 19:49:21    阅读次数:144
_DataStructure_C_Impl:循环单链表
//CycList:循环单链表 #include #include typedef int DataType; typedef struct Node{ DataType data; struct Node *next; }ListNode,*LinkList; //创建一个不带头结点的循环单链表 LinkList CreateCycList(int n){ DataType e; Li...
分类:其他好文   时间:2015-08-01 01:11:17    阅读次数:172
Ajax中return false无效 怎么解决?
var flag=0; $.ajax({ url:"widget?type=member_register&ajax=yes&action=checkname&username="+username, dataType:"json", async: false, success:f...
分类:Web程序   时间:2015-07-31 10:14:05    阅读次数:153
二叉树的基本运算
1 #include 2 #include 3 using namespace std; 4 #define datatype char 5 typedef struct node 6 { 7 datatype data; 8 struct node *lchi...
分类:其他好文   时间:2015-07-30 12:55:24    阅读次数:126
JavaScript
最近几天用到js,把一些常用的函数和出现较多次数的问题记录下来。(好记性不如烂笔头,时常翻一翻)。1、$(document).ready(function(){});一个可以全局检测事件的方法2、$.ajax({ dataType:"text", type: "POST", url: url,...
分类:编程语言   时间:2015-07-30 00:20:30    阅读次数:155
1091条   上一页 1 ... 79 80 81 82 83 ... 110 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!