KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
algorithm
★ 17
Open GitHub ↗
PHPでアルゴリズムの復習
Download README (.md)
Explore Similar Repositories
running-death-overdrive
:
Listen to Running Death's album Overdrive
p5.js-education
:
p5 education working group repo
LightFirewall
:
Lightweight firewall built for NodeJs.
osx-mac-menubar-app
:
Menubar application for Mac
ocaml-gammu
:
Cell phone and SIM card access.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
algorithm
?
Download (.md)
# PHPを用いたアルゴリズムとデータ構造に関してのコードです。 ## 探索 ### [チェインハッシュ法による探索](https://github.com/Khanashima/algorithm/blob/master/src/search/chainHashSearch.php) ### [バイナリサーチ](https://github.com/Khanashima/algorithm/blob/master/src/search/binarySearch.php) ### [リニアサーチ](https://github.com/Khanashima/algorithm/blob/master/src/search/linearSearch.php) ### [深さ探索](https://github.com/Khanashima/algorithm/blob/master/src/mazeTest.php) ### [文字列探索 Boyer Moore法](https://github.com/Khanashima/algorithm/blob/master/src/search/boyerMooreSearch.php) ### [2分木](https://github.com/Khanashima/algorithm/blob/master/src/tree/binaryTreeTest.php) ## ソート ### [マージソート](https://github.com/Khanashima/algorithm/blob/master/src/sort/mergeSort.php) ### [クイックソート](https://github.com/Khanashima/algorithm/blob/master/src/sort/quickSort.php) ### [シェルソート](https://github.com/Khanashima/algorithm/blob/master/src/sort/shellSort.php) ### [単純挿入ソート](https://github.com/Khanashima/algorithm/blob/master/src/sort/insertionSort.php) ### [単純選択ソート](https://github.com/Khanashima/algorithm/blob/master/src/sort/selectionSort.php) ### [バブルソート](https://github.com/Khanashima/algorithm/blob/master/src/sort/bubbleSort.php) ## その他 ### [fizzBuzz](https://github.com/Khanashima/algorithm/blob/master/src/fizzBuzz.php) ### [リングバッファ](https://github.com/Khanashima/algorithm/blob/master/src/ringBufferTest.php) ### [階乗の計算](https://github.com/Khanashima/algorithm/blob/master/src/recursion/factorial.php) ### [ハノイの塔](https://github.com/Khanashima/algorithm/blob/master/src/recursion/hanoi.php) ### [ユークリッドの互除法](https://github.com/Khanashima/algorithm/blob/master/src/recursion/euclidean.php) ### [7パズル](https://github.com/Khanashima/algorithm/blob/master/src/sevenPuzzleTest.php) ### [8個王妃問題](https://github.com/Khanashima/algorithm/blob/master/src/recursion/eightQueen.php) ### [ダイクストラ法](https://github.com/Khanashima/algorithm/blob/master/src/dijkstraTest.php) ### [ナップザック問題](https://github.com/Khanashima/algorithm/blob/master/src/knapsackTest.php) ### [フィボナッチ数列 (メモ化再帰含む)](https://github.com/Khanashima/algorithm/blob/master/src/recursion/fibonacci.php)