{"id":8165,"date":"2020-09-11T15:56:23","date_gmt":"2020-09-11T07:56:23","guid":{"rendered":"https:\/\/sdeno.com\/?p=8165"},"modified":"2020-09-11T17:12:20","modified_gmt":"2020-09-11T09:12:20","slug":"8165","status":"publish","type":"post","link":"https:\/\/sdeno.com\/?p=8165","title":{"rendered":"\u5e38\u7528\u6c47\u603b"},"content":{"rendered":"<p>&nbsp;<\/p>\n<p>\/\/\u5192\u6ce1\u6392\u5e8f\uff0c\u6570\u5b57\u6392\u5e8f<\/p>\n<pre>function bubbleSort(arr) {\r\n  var len = arr.length;\r\n  for (var i = 0; i &lt; len; i++) {\r\n    for (var j = 0; j &lt; len - 1 - i; j++) {\r\n      if (arr[j] &gt; arr[j+1]) { \/\/\u76f8\u90bb\u5143\u7d20\u4e24\u4e24\u5bf9\u6bd4\r\n        var temp = arr[j+1]; \/\/\u5143\u7d20\u4ea4\u6362\r\n        arr[j+1] = arr[j];\r\n        arr[j] = temp;\r\n      }\r\n    }\r\n  }\r\n  return arr;\r\n}\r\nbubbleSort([-1,2,0,-3,5])\r\n\/\/[-3, -1, 0, 2, 5]<\/pre>\n<p>&nbsp;<\/p>\n<p>\/\/\u6570\u7ec4\uff0c\u6574\u6570\u53bb\u91cd<\/p>\n<pre>let unique = function(arr) {\r\n  let hashTable = {};\r\n  let data = [];\r\n  for(let i=0,l=arr.length;i&lt;l;i++) {\r\n    if(!hashTable[arr[i]]) {\r\n      hashTable[arr[i]] = true;\r\n      data.push(arr[i]);\r\n    }\r\n  }\r\n  return data\r\n}\r\nunique([1,2,4,4,-1,-2,-1])<\/pre>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>&nbsp; \/\/\u5192\u6ce1\u6392\u5e8f\uff0c\u6570\u5b57\u6392\u5e8f function bubbleSort(arr) { var len = [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[53],"tags":[],"class_list":["post-8165","post","type-post","status-publish","format-standard","hentry","category-53"],"_links":{"self":[{"href":"https:\/\/sdeno.com\/index.php?rest_route=\/wp\/v2\/posts\/8165","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sdeno.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/sdeno.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/sdeno.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/sdeno.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=8165"}],"version-history":[{"count":0,"href":"https:\/\/sdeno.com\/index.php?rest_route=\/wp\/v2\/posts\/8165\/revisions"}],"wp:attachment":[{"href":"https:\/\/sdeno.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=8165"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sdeno.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=8165"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/sdeno.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=8165"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}