0
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?

最大値を探すアルゴリズム

Last updated at Posted at 2024-05-20

はじめに

最大値を探すアルゴリズムについてまとめる

対象データ

5つの整数が格納された配列を処理対象とする。

data.php
$array = [12, 13, 11, 14, 11];

フローチャート

image.png

解説

①変数maxを用意する。
array[0]のデータを変数maxに代入し、暫定の最大値とする。
③変数maxarray[1]を比較する
array[1]の方が大きければこちらが新最大値となる。
array[1]が変数maxより大きくない場合は変数maxに格納されたarray[0]が最大値の座をキープする。
⑥以降は同じ手順で繰り返す。
⑦変数maxを出力する。

0
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
0
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?