Skip to content

Latest commit

 

History

History
63 lines (46 loc) · 2.14 KB

README.md

File metadata and controls

63 lines (46 loc) · 2.14 KB

Data Structures Implementation Repository

Purpose

The purpose of this repository is to:

  1. Familiarize with various data structures.
  2. Gain proficiency in different programming languages.
  3. Understand and use corresponding build systems.
  4. Develop skills in debugging and benchmarking techniques.

Directory Structure

.
└── {data structure name}
    ├── benchmark
    └── {sub data structure name}
        └── {author}
            ├── {programming language-version}

数据结构实现仓库

目的

本仓库的目的是:

  1. 熟悉各种数据结构。
  2. 掌握不同的编程语言。
  3. 理解并使用对应的构建系统。
  4. 提高调试和性能测试(benchmark)技巧。

目录结构

.
└── {数据结构名称}
    ├── benchmark
    └── {子数据结构名称}
        └── {作者}
            ├── {编程语言-版本}

Additional Notes / 补充说明

  • Replace {data structure name}, {sub data structure name}, {author}, and {programming language-version} with actual names and information relevant to your project.
  • Ensure that each data structure and sub-data structure is organized according to the directory structure for better clarity and ease of navigation.
  • When adding new data structures or languages, follow the established directory naming conventions.
  • Benchmark results should be placed under the benchmark directory for each data structure.
  • Make sure to document any specific build instructions or dependencies in a README file within the relevant directory.

  • {data structure name}{sub data structure name}{author}{programming language-version} 替换为与您的项目相关的实际名称和信息。
  • 确保每个数据结构和子数据结构都按照目录结构组织,以便于清晰和便捷地导航。
  • 添加新的数据结构或编程语言时,请遵循既定的目录命名规则。
  • 性能测试(benchmark)的数据文件应放在每个数据结构的 benchmark 目录下。
  • 请务必在相关目录中的 README 文件中记录任何特定的构建说明或依赖项。