
{"id":6222,"date":"2011-11-13T20:35:54","date_gmt":"2011-11-13T20:35:54","guid":{"rendered":"http:\/\/www.beautifulwork.org\/?p=6222"},"modified":"2011-11-13T20:35:54","modified_gmt":"2011-11-13T20:35:54","slug":"selection-sort-using-php","status":"publish","type":"post","link":"https:\/\/www.trueangle.org\/index.php\/2011\/11\/13\/selection-sort-using-php\/","title":{"rendered":"selection sort using php"},"content":{"rendered":"<pre>\n&lt;?php\n$arr = array(2,3,4,5,1,8,11,0);\n\/\/ function selection_sort(&amp;$arr) {\n   $n = count($arr);\n   for($i = 0; $i &lt; count($arr); $i++) {\n      $min = $i;\n      for($j = $i + 1; $j &lt; $n; $j++)\n         if($arr[$j] &lt; $arr[$min])\n            $min = $j;\n      $tmp = $arr[$min];\n      $arr[$min] = $arr[$i];\n      $arr[$i] = $tmp;\n   }\n\/\/ }\nprint_r($arr);\n?&gt;\n\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>&lt;?php $arr = array(2,3,4,5,1,8,11,0); \/\/ function selection_sort(&amp;$arr) { $n = count($arr); for($i = 0; $i &lt; count($arr); $i++) { $min = $i; for($j = $i + 1; $j &lt; $n; $j++) if($arr[$j] &lt; $arr[$min]) $min = $j; $tmp = $arr[$min]; $arr[$min] = $arr[$i]; $arr[$i] = $tmp; } \/\/ } print_r($arr); ?&gt;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[1],"tags":[],"_links":{"self":[{"href":"https:\/\/www.trueangle.org\/index.php\/wp-json\/wp\/v2\/posts\/6222"}],"collection":[{"href":"https:\/\/www.trueangle.org\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.trueangle.org\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.trueangle.org\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.trueangle.org\/index.php\/wp-json\/wp\/v2\/comments?post=6222"}],"version-history":[{"count":0,"href":"https:\/\/www.trueangle.org\/index.php\/wp-json\/wp\/v2\/posts\/6222\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.trueangle.org\/index.php\/wp-json\/wp\/v2\/media?parent=6222"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.trueangle.org\/index.php\/wp-json\/wp\/v2\/categories?post=6222"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.trueangle.org\/index.php\/wp-json\/wp\/v2\/tags?post=6222"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}