{"id":243,"date":"2012-02-09T22:48:22","date_gmt":"2012-02-09T13:48:22","guid":{"rendered":"http:\/\/tech.fuqinho.net\/?p=243"},"modified":"2012-02-09T22:48:22","modified_gmt":"2012-02-09T13:48:22","slug":"%e3%82%bd%e3%83%bc%e3%83%88%e3%81%ae%e3%82%a2%e3%83%ab%e3%82%b4%e3%83%aa%e3%82%ba%e3%83%a0","status":"publish","type":"post","link":"https:\/\/tech.fuqinho.net\/?p=243","title":{"rendered":"\u30bd\u30fc\u30c8\u306e\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0"},"content":{"rendered":"<p>\t\t\t\tGoogle\u306e\u65b0\u5352\u63a1\u7528\u5411\u3051Hangout\u3092\u3072\u3084\u304b\u3057\u3067\u898b\u3066\u305f\u3089\u3001\u793e\u54e1\u306e\u65b9\u304c\u3053\u3093\u306a\u611f\u3058\u306e\u3053\u3068\u3092\u8a00\u3063\u3066\u305f\u3002<\/p>\n<blockquote><p>Google\u306e\u9762\u63a5\u3068\u3044\u3063\u3066\u3082\u96e3\u3057\u3044\u3053\u3068\u306f\u805e\u304b\u308c\u306a\u304f\u3066\u3001CS(Computer Science)\u306e\u4eba\u306a\u3089\u7b54\u3048\u3089\u308c\u308b\u3067\u3042\u308d\u3046\u8cea\u554f\u3060\u3063\u305f\u3002\u81ea\u5206\u306e\u5834\u5408\u3060\u3068\u3001\u30af\u30a4\u30c3\u30af\u30bd\u30fc\u30c8\u3092\u66f8\u304b\u3055\u308c\u3066\u3001\u305d\u3053\u304b\u3089\u6027\u8cea\u3084\u8a08\u7b97\u91cf\u306e\u30aa\u30fc\u30c0\u30fc\u306a\u3069\u306b\u3064\u3044\u3066\u306e\u8aac\u660e\u3092\u6c42\u3081\u3089\u308c\u305f<\/p><\/blockquote>\n<p>CS\u3084\u3063\u3066\u305f\u4eba\u3068\u3057\u3066\u6065\u305a\u304b\u3057\u304f\u306a\u3044\u6280\u80fd\u3092\u8eab\u306b\u3064\u3051\u305f\u3044\uff01\u3063\u3066\u601d\u3044\u306a\u304c\u3089\u6bce\u65e5\u904e\u3054\u3057\u3066\u308b\u81ea\u5206\u3068\u3057\u3066\u306f\u6c17\u306b\u306a\u308b\u30b3\u30e1\u30f3\u30c8\u3002<br \/>\n\u307b\u3046\u307b\u3046\u3001\u30af\u30a4\u30c3\u30af\u30bd\u30fc\u30c8\u2026\u3002\u3069\u3093\u306a\u3093\u3084\u3063\u305f\u3063\u3051\u3002\u3046\u308d\u899a\u3048\u306a\u307e\u307e\uff11\uff15\u5206\u304b\u3051\u3066\u5b9f\u88c5\u3059\u308b\u3082\u3001\u3042\u3048\u306a\u304f\u7121\u9650\u30eb\u30fc\u30d7\u3002\u3055\u3089\u306b\uff13\uff10\u5206\u304b\u3051\u3066\u30d0\u30b0\u3092\u53d6\u3063\u305f\u306e\u304c\u3053\u3061\u3089\u306e\u30b3\u30fc\u30c9\u306b\u306a\u308a\u307e\u3059\u2026orz\u3000\u9762\u63a5\u7d42\u308f\u3063\u3066\u308b\u306a\u3002<\/p>\n<p>[cpp]<br \/>\n#include &lt;iostream&gt;<br \/>\n#include &lt;vector&gt;<br \/>\nusing namespace std;<\/p>\n<p>void quicksort(const vector&lt;int&gt;::iterator begin, const vector&lt;int&gt;::iterator end) {<br \/>\n  if (end &#8211; begin &lt;= 1) return;<br \/>\n  \/\/ pivot\u306b\u306f\u5358\u7d14\u306b\u5148\u982d\u8981\u7d20\u3092\u4f7f\u3046<br \/>\n  int pivot = *begin;<\/p>\n<p>  \/\/ \u4e21\u30b5\u30a4\u30c9\u304b\u3089\u8d70\u67fb\u3057\u3066\u3001pivot\u672a\u6e80\u306e\u8981\u7d20\u3068pivot\u4ee5\u4e0a\u306e\u8981\u7d20\u306e<br \/>\n  \/\/ \u7d44\u304c\u898b\u3064\u304b\u3063\u305f\u3089swap<br \/>\n  vector&lt;int&gt;::iterator left = begin, right = end &#8211; 1;<br \/>\n  do {<br \/>\n    while (*left &lt; pivot &amp;&amp; left &lt; right) left++;<br \/>\n    while (*right &gt;= pivot &amp;&amp; left &lt; right) right&#8211;;<br \/>\n    if (left &lt; right) {<br \/>\n      swap(*left, *right);<br \/>\n    }<br \/>\n  } while (left != right);<\/p>\n<p>  \/\/ [begin, left)\u304cpivot\u672a\u6e80\u3001[left, end)\u304cpivot\u4ee5\u4e0a\u306a\u306e\u3067\u3001<br \/>\n  \/\/ left\u3092\u5883\u306b\u5206\u5272\u3059\u308b\u3002\u305f\u3060\u3057left==begin\u306e\u6642\u306f\u5168\u8981\u7d20pivot\u4ee5\u4e0a\u306a\u306e\u3067<br \/>\n  \/\/ pivot\u306b\u306a\u3063\u305f\u5de6\u7aef\u306e\u8981\u7d20\u306f\u5de6\u5074\u306e\u533a\u9593\u306b\u632f\u308a\u5206\u3051\u3066\u533a\u9593\u3092\u5c0f\u3055\u304f\u3059\u308b<br \/>\n  vector&lt;int&gt;::iterator mid = left;<br \/>\n  if (mid == begin) mid++;<\/p>\n<p>  \/\/ \u5206\u5272\u3057\u305f\u533a\u9593\u306b\u5bfe\u3057\u3066\u518d\u5e30\u7684\u306bsort<br \/>\n  quicksort(begin, mid);<br \/>\n  quicksort(mid, end);<br \/>\n}<\/p>\n<p>int main() {<br \/>\n  static const int a[] = {3, 2, 1, 2, 6, 5, 9, 1, 8};<br \/>\n  vector&lt;int&gt; v(sizeof(a) \/ sizeof(a[0]));<br \/>\n  v.assign(a, a + v.size());<\/p>\n<p>  quicksort(v.begin(), v.end());<\/p>\n<p>  for (int i = 0; i &lt; v.size(); i++) cout &lt;&lt; v[i] &lt;&lt; &quot; &quot;;<br \/>\n  cout &lt;&lt; endl;<br \/>\n}<\/p>\n<p>[\/cpp]<\/p>\n<p>\u8eca\u8f2a\u3082\uff11\u56de\u304f\u3089\u3044\u306f\u4f5c\u3063\u3068\u304f\u3079\u304d\u3060\u3088\u306d\u3002<\/p>\n<p>\u66f8\u3044\u3066\u308b\u3046\u3061\u306b\u6c17\u306b\u306a\u3063\u305f\u306e\u304c\u3001STL\u306esort\u306f\u3069\u3093\u306a\u5b9f\u88c5\u306b\u306a\u3063\u3066\u308b\u3093\u3060\u308d\u3046\uff1f\u3063\u3066\u3053\u3068\u3002\u691c\u7d22\u3059\u308b\u3068Sigmar\u3055\u3093\u304c\u8abf\u3079\u3066<a href=\"http:\/\/topcoder.g.hatena.ne.jp\/jackpersel\/20111023\">\u30d6\u30ed\u30b0\u306b\u66f8\u3044\u3066\u304f\u308c\u3066\u305f<\/a>\u3002\u4ee3\u8868\u7684\u306a\u5b9f\u88c5\u3067\u306f\u3053\u3093\u306a\u611f\u3058\u306b\u306a\u3063\u3066\u3044\u308b\u306e\u3060\u305d\u3046\u3002<\/p>\n<ol>\n<li>\u307e\u305a\u306f\u30af\u30a4\u30c3\u30af\u30bd\u30fc\u30c8<\/li>\n<li>\u518d\u5e30\u304c\u3042\u308b\u4e00\u5b9a\u4ee5\u4e0a\u6df1\u304f\u306a\u3063\u305f\u3089\u30d2\u30fc\u30d7\u30bd\u30fc\u30c8\u306b\u5207\u308a\u66ff\u3048<\/li>\n<li>\u3042\u308b\u7a0b\u5ea6\u30bd\u30fc\u30c8\u304c\u9032\u3093\u3060\u3089\u3001\u6700\u5f8c\u306f\u633f\u5165\u30bd\u30fc\u30c8\u3067\u4ed5\u4e0a\u3052\u308b<\/li>\n<\/ol>\n<p>\u624b\u98061\u30682\u3092\u307e\u3068\u3081\u3066\u30a4\u30f3\u30c8\u30ed\u30bd\u30fc\u30c8\u3063\u3066\u3044\u3046\u3089\u3057\u3044\u3067\u3059\u3002\u306a\u308b\u307b\u3069\u306a\u308b\u307b\u3069\u30fc<br \/>\n\u6c4e\u7528\u7684\u306a\u307e\u307e\u3088\u3044\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u767a\u63ee\u3059\u308b\u305f\u3081\u306b\u5de5\u592b\u3055\u308c\u3066\u308b\u3093\u3060\u306a\u3041<\/p>\n<p>\u3042\u3068\u3001\u8abf\u3079\u3066\u308b\u6642\u306b\u906d\u9047\u3057\u305f\u3001Haskell\u3067\u66f8\u3044\u305f\u30af\u30a4\u30c3\u30af\u30bd\u30fc\u30c8\u304c\u304b\u3063\u3053\u3088\u3059\u304e\u305f\u3002<br \/>\n[text]<br \/>\nqsort [] = []<br \/>\nqsort (x:xs) = qsort (filter (&lt; x) xs) ++ [x] ++ qsort (filter (&gt;= x) xs)<br \/>\n[\/text]<br \/>\nHaskell\u3082\u52c9\u5f37\u3057\u3066\u55dc\u3093\u3067\u307f\u305f\u3044\u3067\u3059\u3002\t\t<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Google\u306e\u65b0\u5352\u63a1\u7528\u5411\u3051Hangout\u3092\u3072\u3084\u304b\u3057\u3067\u898b\u3066\u305f\u3089\u3001\u793e\u54e1\u306e\u65b9\u304c\u3053\u3093\u306a\u611f\u3058\u306e\u3053\u3068\u3092\u8a00\u3063\u3066\u305f\u3002 Google\u306e\u9762\u63a5\u3068\u3044\u3063\u3066\u3082\u96e3\u3057\u3044\u3053\u3068\u306f\u805e\u304b\u308c\u306a\u304f\u3066\u3001CS(Computer Science)\u306e\u4eba\u306a\u3089\u7b54\u3048\u3089\u308c\u308b\u3067\u3042\u308d &#8230; <a title=\"\u30bd\u30fc\u30c8\u306e\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0\" class=\"read-more\" href=\"https:\/\/tech.fuqinho.net\/?p=243\" aria-label=\"\u8a73\u7d30\u306f\u3053\u3061\u3089 \u30bd\u30fc\u30c8\u306e\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0\">\u7d9a\u304d\u3092\u8aad\u3080<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_mi_skip_tracking":false,"footnotes":""},"categories":[2],"tags":[],"class_list":["post-243","post","type-post","status-publish","format-standard","hentry","category-2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v20.2.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>\u30bd\u30fc\u30c8\u306e\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0 - Happy Coder<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/tech.fuqinho.net\/?p=243\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u30bd\u30fc\u30c8\u306e\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0 - Happy Coder\" \/>\n<meta property=\"og:description\" content=\"Google\u306e\u65b0\u5352\u63a1\u7528\u5411\u3051Hangout\u3092\u3072\u3084\u304b\u3057\u3067\u898b\u3066\u305f\u3089\u3001\u793e\u54e1\u306e\u65b9\u304c\u3053\u3093\u306a\u611f\u3058\u306e\u3053\u3068\u3092\u8a00\u3063\u3066\u305f\u3002 Google\u306e\u9762\u63a5\u3068\u3044\u3063\u3066\u3082\u96e3\u3057\u3044\u3053\u3068\u306f\u805e\u304b\u308c\u306a\u304f\u3066\u3001CS(Computer Science)\u306e\u4eba\u306a\u3089\u7b54\u3048\u3089\u308c\u308b\u3067\u3042\u308d ... \u7d9a\u304d\u3092\u8aad\u3080\" \/>\n<meta property=\"og:url\" content=\"https:\/\/tech.fuqinho.net\/?p=243\" \/>\n<meta property=\"og:site_name\" content=\"Happy Coder\" \/>\n<meta property=\"article:published_time\" content=\"2012-02-09T13:48:22+00:00\" \/>\n<meta name=\"author\" content=\"fuqinho\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u57f7\u7b46\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"fuqinho\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593\" \/>\n\t<meta name=\"twitter:data2\" content=\"1\u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/tech.fuqinho.net\/?p=243#article\",\"isPartOf\":{\"@id\":\"https:\/\/tech.fuqinho.net\/?p=243\"},\"author\":{\"name\":\"fuqinho\",\"@id\":\"https:\/\/tech.fuqinho.net\/#\/schema\/person\/3f5c2a20c9acba8360c501cb7038a4e7\"},\"headline\":\"\u30bd\u30fc\u30c8\u306e\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0\",\"datePublished\":\"2012-02-09T13:48:22+00:00\",\"dateModified\":\"2012-02-09T13:48:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/tech.fuqinho.net\/?p=243\"},\"wordCount\":189,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/tech.fuqinho.net\/#\/schema\/person\/3f5c2a20c9acba8360c501cb7038a4e7\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/tech.fuqinho.net\/?p=243#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/tech.fuqinho.net\/?p=243\",\"url\":\"https:\/\/tech.fuqinho.net\/?p=243\",\"name\":\"\u30bd\u30fc\u30c8\u306e\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0 - Happy Coder\",\"isPartOf\":{\"@id\":\"https:\/\/tech.fuqinho.net\/#website\"},\"datePublished\":\"2012-02-09T13:48:22+00:00\",\"dateModified\":\"2012-02-09T13:48:22+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/tech.fuqinho.net\/?p=243#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/tech.fuqinho.net\/?p=243\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/tech.fuqinho.net\/?p=243#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u30db\u30fc\u30e0\",\"item\":\"https:\/\/tech.fuqinho.net\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\u30bd\u30fc\u30c8\u306e\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/tech.fuqinho.net\/#website\",\"url\":\"https:\/\/tech.fuqinho.net\/\",\"name\":\"Happy Coder\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/tech.fuqinho.net\/#\/schema\/person\/3f5c2a20c9acba8360c501cb7038a4e7\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/tech.fuqinho.net\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"ja\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/tech.fuqinho.net\/#\/schema\/person\/3f5c2a20c9acba8360c501cb7038a4e7\",\"name\":\"fuqinho\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/tech.fuqinho.net\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/tech.fuqinho.net\/wp-content\/uploads\/2023\/02\/hatena-block_400x400.png\",\"contentUrl\":\"https:\/\/tech.fuqinho.net\/wp-content\/uploads\/2023\/02\/hatena-block_400x400.png\",\"width\":400,\"height\":400,\"caption\":\"fuqinho\"},\"logo\":{\"@id\":\"https:\/\/tech.fuqinho.net\/#\/schema\/person\/image\/\"},\"sameAs\":[\"http:\/\/tech.fuqinho.net\"],\"url\":\"https:\/\/tech.fuqinho.net\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\u30bd\u30fc\u30c8\u306e\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0 - Happy Coder","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/tech.fuqinho.net\/?p=243","og_locale":"ja_JP","og_type":"article","og_title":"\u30bd\u30fc\u30c8\u306e\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0 - Happy Coder","og_description":"Google\u306e\u65b0\u5352\u63a1\u7528\u5411\u3051Hangout\u3092\u3072\u3084\u304b\u3057\u3067\u898b\u3066\u305f\u3089\u3001\u793e\u54e1\u306e\u65b9\u304c\u3053\u3093\u306a\u611f\u3058\u306e\u3053\u3068\u3092\u8a00\u3063\u3066\u305f\u3002 Google\u306e\u9762\u63a5\u3068\u3044\u3063\u3066\u3082\u96e3\u3057\u3044\u3053\u3068\u306f\u805e\u304b\u308c\u306a\u304f\u3066\u3001CS(Computer Science)\u306e\u4eba\u306a\u3089\u7b54\u3048\u3089\u308c\u308b\u3067\u3042\u308d ... \u7d9a\u304d\u3092\u8aad\u3080","og_url":"https:\/\/tech.fuqinho.net\/?p=243","og_site_name":"Happy Coder","article_published_time":"2012-02-09T13:48:22+00:00","author":"fuqinho","twitter_card":"summary_large_image","twitter_misc":{"\u57f7\u7b46\u8005":"fuqinho","\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593":"1\u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/tech.fuqinho.net\/?p=243#article","isPartOf":{"@id":"https:\/\/tech.fuqinho.net\/?p=243"},"author":{"name":"fuqinho","@id":"https:\/\/tech.fuqinho.net\/#\/schema\/person\/3f5c2a20c9acba8360c501cb7038a4e7"},"headline":"\u30bd\u30fc\u30c8\u306e\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0","datePublished":"2012-02-09T13:48:22+00:00","dateModified":"2012-02-09T13:48:22+00:00","mainEntityOfPage":{"@id":"https:\/\/tech.fuqinho.net\/?p=243"},"wordCount":189,"commentCount":0,"publisher":{"@id":"https:\/\/tech.fuqinho.net\/#\/schema\/person\/3f5c2a20c9acba8360c501cb7038a4e7"},"inLanguage":"ja","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/tech.fuqinho.net\/?p=243#respond"]}]},{"@type":"WebPage","@id":"https:\/\/tech.fuqinho.net\/?p=243","url":"https:\/\/tech.fuqinho.net\/?p=243","name":"\u30bd\u30fc\u30c8\u306e\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0 - Happy Coder","isPartOf":{"@id":"https:\/\/tech.fuqinho.net\/#website"},"datePublished":"2012-02-09T13:48:22+00:00","dateModified":"2012-02-09T13:48:22+00:00","breadcrumb":{"@id":"https:\/\/tech.fuqinho.net\/?p=243#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/tech.fuqinho.net\/?p=243"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/tech.fuqinho.net\/?p=243#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u30db\u30fc\u30e0","item":"https:\/\/tech.fuqinho.net\/"},{"@type":"ListItem","position":2,"name":"\u30bd\u30fc\u30c8\u306e\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0"}]},{"@type":"WebSite","@id":"https:\/\/tech.fuqinho.net\/#website","url":"https:\/\/tech.fuqinho.net\/","name":"Happy Coder","description":"","publisher":{"@id":"https:\/\/tech.fuqinho.net\/#\/schema\/person\/3f5c2a20c9acba8360c501cb7038a4e7"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/tech.fuqinho.net\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"ja"},{"@type":["Person","Organization"],"@id":"https:\/\/tech.fuqinho.net\/#\/schema\/person\/3f5c2a20c9acba8360c501cb7038a4e7","name":"fuqinho","image":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/tech.fuqinho.net\/#\/schema\/person\/image\/","url":"https:\/\/tech.fuqinho.net\/wp-content\/uploads\/2023\/02\/hatena-block_400x400.png","contentUrl":"https:\/\/tech.fuqinho.net\/wp-content\/uploads\/2023\/02\/hatena-block_400x400.png","width":400,"height":400,"caption":"fuqinho"},"logo":{"@id":"https:\/\/tech.fuqinho.net\/#\/schema\/person\/image\/"},"sameAs":["http:\/\/tech.fuqinho.net"],"url":"https:\/\/tech.fuqinho.net\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/tech.fuqinho.net\/index.php?rest_route=\/wp\/v2\/posts\/243","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tech.fuqinho.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tech.fuqinho.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tech.fuqinho.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/tech.fuqinho.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=243"}],"version-history":[{"count":0,"href":"https:\/\/tech.fuqinho.net\/index.php?rest_route=\/wp\/v2\/posts\/243\/revisions"}],"wp:attachment":[{"href":"https:\/\/tech.fuqinho.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=243"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tech.fuqinho.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=243"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tech.fuqinho.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=243"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}