Heim  >  Artikel  >  php教程  >  php二分法

php二分法

PHP中文网
PHP中文网Original
2016-05-25 17:13:071249Durchsuche

[PHP]代码 

$array = array(1,2,3,4,11,12,124,1245);
function found($array,$low,$hight,$k)
{
	$index = intval(($low+$hight) / 2);
	if($k == $array[$index])
	{
		return $index;
	}elseif($k < $array[$index])
	{
		return found($array,$low,$index-1,$k);
	}else{
		return found($array,$index+1,$hight,$k);
	}

}
echo found($array,0,$count,1245);

/**改进型不使用递归*/
function find($arr,$v)
{
	$start = 0;
	$end   = count($arr) - 1;

	while($start <= $end)
	{
		$index = intval(($start + $end) / 2);
		
		if($v < $arr[$index])
		{
			$end = $index - 1;
		}
		elseif($v > $arr[$index])
		{
			$start = $index + 1;
		}
		else
		{
			return $index;
		}
	}
	return -1;
}

                   

                   

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:PHP导出Excel的类库,支持附带图片Nächster Artikel:php生成密保卡