配列の二分探索【ArrayBsearch】

int ArrayBsearch(double array[ ], double value, int count=WHOLE_ARRAY, intstart=0, int direction=MODE_ASCEND)

 

If the element with the specified value doesn’t exist in the array, the function returns the index of the nearest smallest value of the elements between which the searched value is located.

もし、指定した値を持つ要素が配列に存在しない場合、この関数は、検索値の範囲で最も近い値の要素のインデックスを返します。

The function cannot be used with string arrays and series arrays (with the exception of the series array of the bar open time).

この関数は文字列配列と直列配列では使用することができません。(バーの開始時間の直列配列は除きます))

Note: Binary search processes only sorted arrays. To sort numeric arrays use the ArraySort()function.

注意:二分探索ではソートされた配列だけが処理できます。数値の配列をソートするには、ArraySort() 関数を使用します。

Parameters:

パラメータ:

array[]
The numeric array to search for.

検索する数値配列。

value
The value to search for.

検索する値。

count
Count of elements to search for. By default, it searches in the whole array.

検索する要素の数。デフォルトでは、配列全体を検索します。

start
Starting index to search for. By default, the search starts at the first element.

検索を開始するインデックス。デフォルトでは、最初の要素から検索を開始します。

direction
Search direction. It can be any of the following values:

検索する方向。値は次のいずれかを指定できます。

・MODE_ASCEND:
searching in forward direction.

順方向で検索します。

・MODE_DESCEND:
searching in backward direction.

逆方向で検索します。

 

Sample:

サンプル:

 

Leave a Reply

Your email address will not be published. Required fields are marked *

CAPTCHA


You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code class="" title="" data-url=""> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong> <pre class="" title="" data-url=""> <span class="" title="" data-url="">