jyil / php-data-structure-algorithms
php data structure algorithms
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 2
Open Issues: 0
pkg:composer/jyil/php-data-structure-algorithms
Requires
- php: >=7.1.0
 - phpunit/phpunit: ^7.5
 
Requires (Dev)
- php: >=7.1.0
 
This package is auto-updated.
Last update: 2025-10-19 20:52:48 UTC
README
php 数据结构和算法
git
git clone git@github.com:jyiL/php-dataStructure-algorithms.git
composer
composer create-project jyil/php-data-structure-algorithms path
install
composer install
test
./vendor/bin/phpunit
algorithms 算法
- 
Sorting
- Bubble Sort 冒泡排序
 - Bubble Sort Optimization 冒泡排序优化
 - Bucket Sort 桶排序
 - Heap Sort 堆排序
 - Insertion Sort 插入排序
 - Merge Sort 归并排序
 - Quick Sort 快速排序
 - Radix Sort 基数排序
 - Selection Sort 选择排序
 - Comb Sort 梳排序
 
 - 
Graph
- BFS (Breadth First Search)
 
 
Data Structure 数据结构
- Linked List 链表
- Single Linked List 单链表
 
 
designPattern 设计模式
- 
Creational 创造型
 - 
Structural 结构型
 - 
Behavioral 行为型