{"id":1048,"date":"2024-12-17T18:33:43","date_gmt":"2024-12-17T18:33:43","guid":{"rendered":"https:\/\/monkey.ploogie.co.uk\/?page_id=1048"},"modified":"2024-12-17T18:33:43","modified_gmt":"2024-12-17T18:33:43","slug":"a-bubble-sort","status":"publish","type":"page","link":"https:\/\/monkey.ploogie.co.uk\/index.php\/a-bubble-sort\/","title":{"rendered":"A Bubble Sort"},"content":{"rendered":"<pre>\r\n#!\/usr\/bin\/env mwnci\r\nfunction bsort(S=[]) {\r\n    if (len(S) <= 1) {\r\n        return S;\r\n    }\r\n    i=0\r\n    i_end=len(S)-1\r\n    while (i < i_end) {\r\n        j=0\r\n        j_end=len(S)-i\r\n\tj_end--\r\n\twhile (j < j_end) {\r\n\t    if (S[j] > S[j+1]) {\r\n\t        S=swap(S, j, j+1)\r\n\t    }\r\n\t    j++\r\n\t}\r\n\ti++\r\n    }\r\n    return S;\r\n}\r\n\r\na=[]\r\nforeach n in 1..100 {\r\n    a=push(a, random(10))\r\n}\r\nprintln(\"Unsorted: \", a)\r\na=bsort(a)\r\nprintln(\"Sorted: \", a)\r\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>#!\/usr\/bin\/env mwnci function bsort(S=[]) { if (len(S) S[j+1]) { S=swap(S, j, j+1) } j++ } i++ } return S; } a=[] foreach n in 1..100 { a=push(a, random(10)) } println(&#8220;Unsorted: &#8220;, a) a=bsort(a) println(&#8220;Sorted: &#8220;, a)<\/p>\n","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-1048","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/monkey.ploogie.co.uk\/index.php\/wp-json\/wp\/v2\/pages\/1048","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/monkey.ploogie.co.uk\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/monkey.ploogie.co.uk\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/monkey.ploogie.co.uk\/index.php\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/monkey.ploogie.co.uk\/index.php\/wp-json\/wp\/v2\/comments?post=1048"}],"version-history":[{"count":1,"href":"https:\/\/monkey.ploogie.co.uk\/index.php\/wp-json\/wp\/v2\/pages\/1048\/revisions"}],"predecessor-version":[{"id":1049,"href":"https:\/\/monkey.ploogie.co.uk\/index.php\/wp-json\/wp\/v2\/pages\/1048\/revisions\/1049"}],"wp:attachment":[{"href":"https:\/\/monkey.ploogie.co.uk\/index.php\/wp-json\/wp\/v2\/media?parent=1048"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}