# Play-with-Data-PHP-Structures **Repository Path**: githubli/play-with-data-php-structures ## Basic Information - **Project Name**: Play-with-Data-PHP-Structures - **Description**: 本仓库基于 php 语言实现的常用数据结构。 - **Primary Language**: PHP - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 5 - **Forks**: 0 - **Created**: 2021-04-01 - **Last Updated**: 2023-02-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: 数据结构, BTR, STACK, queue ## README # Play-with-Data-PHP-Structures #### 介绍 本仓库基于 php 语言实现的常用数据结构。 #### 软件架构 PHP>=7.2 ### 安装 git clone https://gitee.com/githubli/play-with-data-php-structures.git #### 使用教程 main.php文件是主文件,测试使用可以在此文件里面进行,里面有使用例子。 ### 源码目录 | 目录 | 说明 | |-|-| | AVLTree | [AVL树](https://gitee.com/githubli/play-with-data-php-structures/tree/master/AVLTree) || | Algorithm | [算法](https://gitee.com/githubli/play-with-data-php-structures/tree/master/Algorithm) || | ArrayInfo | [数组](https://gitee.com/githubli/play-with-data-php-structures/tree/master/ArrayInfo) || | BSTInfo | [二分搜索树](https://gitee.com/githubli/play-with-data-php-structures/tree/master/BSTInfo) || | LinkedInfo | [链表](https://gitee.com/githubli/play-with-data-php-structures/tree/master/LinkedInfo) || | MapInfo | [映射](https://gitee.com/githubli/play-with-data-php-structures/tree/master/MapInfo) || | MaxHeap | [完全二叉树 - 堆](https://gitee.com/githubli/play-with-data-php-structures/tree/master/MaxHeap) || | QueueInfo | [队列](https://gitee.com/githubli/play-with-data-php-structures/tree/master/QueueInfo) || | RBTreeInfo | [红黑树](https://gitee.com/githubli/play-with-data-php-structures/tree/master/RBTreeInfo) || | SegmentTree | [线段树](https://gitee.com/githubli/play-with-data-php-structures/tree/master/SegmentTree) || | Set | [集合](https://gitee.com/githubli/play-with-data-php-structures/tree/master/Set) || | StackInfo | [栈](https://gitee.com/githubli/play-with-data-php-structures/tree/master/StackInfo) || | TrieInfo | [字典](https://gitee.com/githubli/play-with-data-php-structures/tree/master/TrieInfo) || | UnionFind | [并查集](https://gitee.com/githubli/play-with-data-php-structures/tree/master/UnionFind) ||