-
这是一个练习链表的扑克牌程序,可以自动发牌,比较大小。如果想和计算机对战,只需要稍微改动一下程序即可。...
这是一个练习链表的扑克牌程序,可以自动发牌,比较大小。如果想和计算机对战,只需要稍微改动一下程序即可。-This is a practice Chain cards procedures, it will automatically licensing, size comparison. If you want to, and computer war, only slightly modifying procedures.
- 2023-04-09 10:40:03下载
- 积分:1
-
希尔和归并排序,基于数据结构的相关知识。
希尔和归并排序,基于数据结构的相关知识。-Hill and merge sort, based on the data structure knowledge.
- 2022-02-24 10:56:55下载
- 积分:1
-
c++链式队列的实现
c++链式队列的实现头文件如下:
typedef int Item;
typedef struct node * PNode;
typedef struct node
{
Item data;
PNode next;
}Node;
typedef struct
{
PNode front;
PNode rear;
int size;
}Queue;
/*构造一个空队列*/
Queue *InitQueue();
/*销毁一个队列*/
void DestroyQueue(Queue *pqueue);
/*清空一个队列*/
void ClearQueue(Queue *pqueue);
/*判断队列是否为空*/
int IsEmpty(Queue *pqueue);
/*返回队列大小*/
int GetSize(Queue *pqueue);
/*返回队头元素*/
PNode GetFront(Queue *pqueue,Item *pitem);
/*返回队尾元素*/
PNode GetRear(Queue *pqueue,Item *pitem);
/*将新元素入队*/
PNode EnQueue(Queue *pqueue,Item item);
/*队头元素出队*/
PNode DeQueue(Queue *pqueue,Item *pitem);
/*遍历队列并对各数据项调用visit函数*/
void QueueTraverse(Queue *pqueue,void (*visit)());
- 2023-09-04 20:50:03下载
- 积分:1
-
long bei ge suan fa 龙算法
long bei ge suan fa 龙算法-long bei ge suan fa Long algorithm
- 2023-04-27 23:00:03下载
- 积分:1
-
traverse the depth map, using binary tree realize that the importation of binary...
图的深度遍历,用二叉树实现,输入时要遵循二叉树的顶点和边数的对应关系-traverse the depth map, using binary tree realize that the importation of binary tree to be followed when the number of vertices and edges of the relationship
- 2022-04-25 12:17:04下载
- 积分:1
-
数据库Blob读写
数据库Blob读写-database Blob literacy
- 2022-02-03 00:48:00下载
- 积分:1
-
ODBC数据源注册小工具,简化数据库连接
ODBC数据源注册小工具,简化数据库连接-ODBC data source registered a small tool to simplify database connection
- 2022-09-17 12:20:03下载
- 积分:1
-
WordPress博客系统,可以自由改变中文版,没有钱…
wordpress中文版的部落格系统,可以自由改变,无可金钱衡量-the Chinese version of wordpress blog system that can freely change, no money as a gauge
- 2023-03-16 10:35:04下载
- 积分:1
-
c常用算法,用语言编写,为本人数据结构与算法设计作品,在VC++环境下编译通过...
c常用算法,用语言编写,为本人数据结构与算法设计作品,在VC++环境下编译通过-c commonly used algorithm, the language used to prepare for my data structure and algorithm design works in the VC environment compile
- 2022-03-23 02:36:22下载
- 积分:1
-
C++数据结构,通过堆栈方式实现的表达式求值
本源代码是通过堆栈的结构,可以实现表达式求值。可以实现如下功能:1.区分括号2.判断表达式的形式是否有错3.判断小数和整数4.根据符号的优先级能够自动给出计算顺序。5.包中含有表达式求值的详细思路PPT。
- 2022-02-25 15:53:21下载
- 积分:1