エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント1件
- 注目コメント
- 新着コメント
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
DM's Esoteric Programming Languages - Bogobogosort
Mike Rosulek writes: I believe bogobogosort is O(n * (n!)n). Let BBS(n) be the expected time of b... Mike Rosulek writes: I believe bogobogosort is O(n * (n!)n). Let BBS(n) be the expected time of bogobogosort on input size n, and SC(n) the expected time of the sort checking algorithm on input size n. Then BBS(n) = SC(n) + (1 - 1/n!) BBS(n) // with probability 1/n!, we finish, otherwise repeat BBS(n) SC(n) = O(n) + BBS(n-1) + (1-1/n)( BBS(n-1) + O(n) ) // with probability 1/n, the n-th guy is the
2013/12/29 リンク