Heim  >  Artikel  >  Backend-Entwicklung  >  好深奥的知识~ 只用两个栈竟然就实现了排序

好深奥的知识~ 只用两个栈竟然就实现了排序

WBOY
WBOYOriginal
2016-07-29 09:05:141647Durchsuche
$stackA = range(1,9);
shuffle($stackA);
print_r($stackA);
$stackB = array();
while(count($stackA)){
    $tmpA = array_shift($stackA);
    while(count($stackB)){
        $tmpB = array_shift($stackB);
        if($tmpB>=$tmpA){
            array_unshift($stackB,$tmpB);
            break;
        }else{
            array_unshift($stackA,$tmpB);
        }
    }
    array_unshift($stackB,$tmpA);
}
print_r($stackB);

恩恩  LZ想了五年,终于在今天实现了  哈哈哈哈~

以上就介绍了好深奥的知识~ 只用两个栈竟然就实现了排序,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

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:mysq,php写入unicode字符Nächster Artikel:PHP验证码生成原理和实现