Skip to content

算法与数据结构

todo 暂时未分类

综述

  • 集合结构 Collection structures
  • 线性结构 Linear structures
  • 树形结构 Tree structures
  • 图形结构 Graph structures

各类数据结构之间存在着一定的联系和差异,通常根据数据结构的特点和应用场景来进行分类。例如,线性结构可以用来存储和维护一组有序的数据,而树形结构则更适合用来表示层次关系或者实现查找和排序等操作。散列表和哈希表则是特殊的数据结构,可以实现快速插入、删除和查找操作。

There are certain connections and differences between the different types of data structures. They are typically classified based on the characteristics and application scenarios of the data structure. For example, linear structures can be used to store and maintain a set of ordered data, while tree structures are more suitable for representing hierarchical relationships or implementing operations such as search and sort. Hash tables and hash maps are special data structures that can achieve fast insertion, deletion, and search operations.

practice

吃好喝好 快乐地活下去