php基础算法(国外英语资料).doc

  1. 1、本文档共15页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
php基础算法(国外英语资料)

php基础算法(国外英语资料) For the 1. year of the ox: a cattle cow, 4 years old can give birth, every year a student, which is the same as the cow, To 15 years old sterilization, no longer born, 20 years old died, asked how many cows after n years? Function niuFunc ($n) { Static $num = 1; /*/ For ($j = 1; $j $n; $j++) { If ($j = 4 $j 15) { $num++; NiuFunc ($n-$j); } If ($j = 20) { $num--; } } } 2. merging multiple arrays without using array_merge () Function, t () { $c = func_num_args () -1; $a = func_get_args (); For ($i=0; $i=$c; $i++) { If (is_array ($a[$i])) { For ($j=0; $jcount ($a[$i]); $j++) { $r[] = $a[$i][$j]; } } Else { Die (Not, a, array,...); } } Return $r; } 3. find the elements you want in an array (two - point lookup algorithm). Train of thought: take a value in the array as the boundary, and then recursively search until the end Function, find ($array, $low, $high, $k) { If ($low $high) { $mid = intval (($low+$high) /2); If ($array[$mid] = $k) { Return $mid; } Elseif ($k $array[$mid]) { Return, find ($array, $low, $mid-1, $k); } Else { Return, find ($array, $mid+1, $high, $k); } } Die (Not, have,...); } 4. quick sort Function Q ($arr) { If (count ($arr) 1) { Return $arr; } $key = $arr[0]; $l = array (); $r = array (); For ($i=0; $icount ($arr); $i++) { If ($arr[$i] $key) { $l[] = $arr[$i]; } Else { $r[] = $arr[$i]; } } $l = q ($l); $r = q ($r); Return, array_merge ($l, $key, $r); } 5. in a set of numbers, insert a number, insert it in its original order, and maintain the original sort. Train of thought: find the position that is larger than the number to insert, replace, and then shift the number behind Function in ($arr, $in) { If ($arr[$n-1] $in) { $arr[$n+1] = $in; Print_r ($arr); } For ($i=0; $i$n; $i++) { If ($arr[$i] = $in) { $t1= $arr[$i]; $arr[$i] = $in; } The following data / / A For ($j=$i+1; $j$n+1; $j++) { $t2 = $arr[$j]; $arr[$j] = $t1; $t1 = $t2; } } } 6, the first to draw a diamond play, many people learn C when the book has been painte

文档评论(0)

f8r9t5c + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

版权声明书
用户编号:8000054077000003

1亿VIP精品文档

相关文档