数据结构
数据结构
在?为什么不学习
满堂花醉三千客,一剑寒霜十四洲
展开
-
BFS/DFS实现狼羊白菜农夫过河问题
#include<iostream> #include<ctime> #include<cstdlib> #include<cmath> #include<queue> #include<set> #include<memory.h> #include<algorithm> using namespace std; typedef long long ll; typedef int ElemType; str原创 2021-12-11 22:52:06 · 669 阅读 · 0 评论 -
归并排序.
#include<iostream> #include<cstdlib> #include<algorithm> #include<cmath> #include<ctime> using namespace std; typedef long long ll; typedef double ElemType; const int N = 1e5 + 5; ElemType ta[N]; int n; //归并排序,速度仅次于快排,O(nlog原创 2021-12-11 22:50:42 · 603 阅读 · 0 评论 -
二叉树qwq
#include<iostream> #include<cstdio> #include<cstdlib> using namespace std; #define OK 1 #define TRUE 1 #define ERROR 0 #define FALSE 0 #define OVERFLOW -1 typedef int Status; typedef char TElemType; typedef struct BitNode { TElemTyp原创 2021-11-18 15:26:34 · 317 阅读 · 0 评论 -
多维数组qwq
#include<stdio.h> #include<stdarg.h> //变长参数 #include<stdlib.h> #define MAX_ARRAY_DIM 8 #define ERROR 0 #define UNDERFLOW -1 #define OVERFLOW -2 #define OK 1 typedef int ElemType; typedef int Status; typedef struct { ElemType *base; /原创 2021-11-04 15:48:12 · 90 阅读 · 0 评论