摘要:
#include #include #include typedef enum{ATOM, LIST}ElemType;typedef struct GLNode{ ElemType tag; union{ char atom;... 阅读全文
posted @ 2022-07-02 19:00
心坚石穿
阅读(29)
评论(0)
推荐(0)
摘要:
#define _CRT_SECURE_NO_WARNINGS#include #include typedef int ElemType;typedef struct Node{ int row, col; ElemType data; ... 阅读全文
posted @ 2022-07-02 19:00
心坚石穿
阅读(51)
评论(0)
推荐(0)
摘要:
直接编译运行即可 #include using namespace std;#define PI 3.14159265void menu(){ printf("******** 转化器 ************\n"); printf(... 阅读全文
posted @ 2022-07-02 19:00
心坚石穿
阅读(127)
评论(0)
推荐(0)
摘要:
#define _CRT_SECURE_NO_WARNINGS#include #include #include typedef struct _Triple{ int i; int j; int e;}Triple;typedef... 阅读全文
posted @ 2022-07-02 19:00
心坚石穿
阅读(39)
评论(0)
推荐(0)
摘要:
#define _CRT_SECURE_NO_WARNINGS#include #include typedef struct _Queue{ int max_size; int rear; int lenth; int* dat... 阅读全文
posted @ 2022-07-02 19:00
心坚石穿
阅读(56)
评论(0)
推荐(0)
摘要:
杨辉三角的打印---------数据结构典型例题 现在,给定一个数字N,需要打印N行的杨辉三角 注意: 杨辉三角实际上是 ... 阅读全文
posted @ 2022-07-02 19:00
心坚石穿
阅读(219)
评论(0)
推荐(0)
摘要:
K阶斐波那契数列--------西工大NOJ习题.10 原创不易,转载请说明出处!!! 科普:k阶斐波那契数列的0到n-1项需... 阅读全文
posted @ 2022-07-02 19:00
心坚石穿
阅读(35)
评论(0)
推荐(0)
摘要:
数据结构实现——循环队列 原创不易,转载请声明出处。 刚学队列,若有BUG,欢迎反馈 使用的函数功能介绍 Queue *Cr... 阅读全文
posted @ 2022-07-02 19:00
心坚石穿
阅读(50)
评论(0)
推荐(0)
摘要:
数据结构实现——链队列 原创不易,转载请声明出处。 刚学队列,若有BUG,欢迎反馈 使用的函数功能介绍 Queue *Cre... 阅读全文
posted @ 2022-07-02 19:00
心坚石穿
阅读(28)
评论(0)
推荐(0)
摘要:
题目 题目oj(洛谷) Farmer John and Betsy are playing a game with N (1 ... 阅读全文
posted @ 2022-07-02 19:00
心坚石穿
阅读(27)
评论(0)
推荐(0)

浙公网安备 33010602011771号