1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

よく使うSortアルゴリズムの視覚的まとめ

Posted at

UdemyのAndrei Neagoieさんのコース Master the Coding Interview: Data Structures + Algorithms を参考にしています(オススメです).SortingのSectionを終わったので忘れないうちにメモ。

自分は式とかコードよりも図で覚えるタイプなので各アルゴリズムのイメージを図を書いて覚えようという試みです(コードはググればたくさん記事が既にあったので載せてません)。

全体のまとめ

sort-sammary.jpg

Big OBig-O cheat sheetを参考にしています。このサイトはSort以外にも各Data StructureのBig Oについても記載があります。

基本的には

  • 最悪のケースを想定しなくてもいいなら 早くてメモリ消費の少ないquick
  • メモリーを使ってもいいなら安定の merge
  • インプットが小さい or ほとんどSortされているなら insertion
  • bubble, selectionは実装は簡単だけど効率は良くない
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?