-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
31 lines (27 loc) · 761 Bytes
/
main.cpp
File metadata and controls
31 lines (27 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include "headers/list/CLinkList.h"
#include "headers/tree/BiTree.h"
#include "headers/stack/LinkStack.h"
#include "headers/queue/LinkQueue.h"
#include "headers/stack/SqStack.h"
#include "headers/queue/SqQueue.h"
#include "headers/list/LinkList.h"
#include "headers/list/SqList.h"
#include "headers/list/DuLinkList.h"
#include "headers/tree/HuffmanTree.h"
int main() {
// cLinkListOperate();
// cLinkListHeadOperate();
// biTreeOperate();
// linkStackOperate();
// linkQueueOperate();
sqStackOperate();
// sqQueueOperate();
// linkListOperate();
// headOperate();
// tailOperate();
// mergeLinkListOperate();
// sqListOperate();
// mergeSqListOperate();
// duLinkListOperate();
// huffmanTreeOperate();
}