-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHello.cpp
More file actions
35 lines (33 loc) · 1.56 KB
/
Copy pathHello.cpp
File metadata and controls
35 lines (33 loc) · 1.56 KB
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
32
33
34
35
/**
* Welcome to the THU Data Structures Sample Code Repository
* 清华大学数据结构课程 —— 样本代码仓库
*
* 本仓库基于邓俊辉《数据结构(C++语言版)》教材体系构建
* 包含教材核心数据结构的完整实现、经典算法与应用示例
*
* Part I 基础篇 (01-06): 绪论/向量/列表/栈队列/二叉树/图
* Part II 搜索与索引 (07-12): BST/高级树/词典/堆/串/排序
* Part III 高级DS (13-18): 线段树/可持久化/树上算法/后缀/Wavelet/空间索引
* Part IV 图论网络 (19-22): 图进阶/网络流/谱图论/线性规划
* Part V 算法核心 (23-29): 字符串/DP基础/DP进阶/数论/计算几何/随机/在线
* Part VI 系统实战 (30-36): 概率/存储/并发/内存/外存/面试/竞赛
*
* 编译: g++ -std=c++17 filename.cpp -o filename
* 运行: ./filename
*/
#include <iostream>
using namespace std;
int main() {
cout << "========================================" << endl;
cout << " THU Data Structures Sample Code Repo " << endl;
cout << " 清华大学数据结构课程样本代码仓库 " << endl;
cout << "========================================" << endl;
cout << endl;
cout << "Based on Deng Junhui's textbook:" << endl;
cout << " <<Data Structures (C++ Language Edition)>>" << endl;
cout << " 《数据结构(C++语言版)》第3版, 清华大学出版社" << endl;
cout << endl;
cout << "Navigate to each chapter folder for sample code." << endl;
cout << "Each .cpp file can be compiled independently." << endl;
return 0;
}