{"id":163,"date":"2019-12-25T08:47:00","date_gmt":"2019-12-25T08:47:00","guid":{"rendered":"https:\/\/imwarming.com\/?p=163"},"modified":"2019-12-25T08:47:00","modified_gmt":"2019-12-25T08:47:00","slug":"%e4%ba%8c%e5%8f%89%e6%90%9c%e7%b4%a2%e6%a0%91","status":"publish","type":"post","link":"https:\/\/imwarming.com\/?p=163","title":{"rendered":"\u4e8c\u53c9\u641c\u7d22\u6811"},"content":{"rendered":"<div class=\"cnblogs_code\">\n<pre>#include&lt;bits\/stdc++.h&gt;\n<span style=\"color: #0000ff;\">#define<\/span> maxsize 100\n<span style=\"color: #0000ff;\">using<\/span> <span style=\"color: #0000ff;\">namespace<\/span><span style=\"color: #000000;\"> std;\ntypedef <\/span><span style=\"color: #0000ff;\">struct<\/span><span style=\"color: #000000;\"> treenode\n{<\/span><span style=\"color: #008000;\">\/\/<\/span><span style=\"color: #008000;\">\u5b9a\u4e49\u4e8c\u53c9\u6811\u7ed3\u6784<\/span>\n    <span style=\"color: #0000ff;\">char<\/span><span style=\"color: #000000;\"> data;\n    <\/span><span style=\"color: #0000ff;\">struct<\/span> node *lchild,*<span style=\"color: #000000;\">rchild;\n}<\/span>*<span style=\"color: #000000;\">bitree,bitnode;\n\n<\/span><span style=\"color: #008000;\">\/\/<\/span><span style=\"color: #008000;\">\u67e5\u627e1<\/span>\nbitnode find( <span style=\"color: #0000ff;\">int<\/span><span style=\"color: #000000;\"> x, bitree bst ) {\n    <\/span><span style=\"color: #0000ff;\">if<\/span>( !<span style=\"color: #000000;\">bst ) \n        <\/span><span style=\"color: #0000ff;\">return<\/span> null; <span style=\"color: #008000;\">\/*<\/span><span style=\"color: #008000;\">\u67e5\u627e\u5931\u8d25<\/span><span style=\"color: #008000;\">*\/<\/span> \n    <span style=\"color: #0000ff;\">if<\/span>( x &gt; bst-&gt;<span style=\"color: #000000;\">data ) \n        <\/span><span style=\"color: #0000ff;\">return<\/span> find( x, bst-&gt;rchild ); <span style=\"color: #008000;\">\/*<\/span><span style=\"color: #008000;\">\u5728\u53f3\u5b50\u6811\u4e2d\u7ee7\u7eed\u67e5\u627e<\/span><span style=\"color: #008000;\">*\/<\/span>\n    <span style=\"color: #0000ff;\">else<\/span> <span style=\"color: #0000ff;\">if<\/span>( x &lt; bst-&gt;<span style=\"color: #000000;\">data ) \n        <\/span><span style=\"color: #0000ff;\">return<\/span> find( x, bst-&gt;lchild ); <span style=\"color: #008000;\">\/*<\/span><span style=\"color: #008000;\">\u5728\u5de6\u5b50\u6811\u4e2d\u7ee7\u7eed\u67e5\u627e<\/span><span style=\"color: #008000;\">*\/<\/span>\n    <span style=\"color: #0000ff;\">else<\/span> <span style=\"color: #008000;\">\/*<\/span><span style=\"color: #008000;\"> x == bst-&gt;data <\/span><span style=\"color: #008000;\">*\/<\/span> \n        <span style=\"color: #0000ff;\">return<\/span> bst; <span style=\"color: #008000;\">\/*<\/span><span style=\"color: #008000;\">\u67e5\u627e\u6210\u529f\uff0c\u8fd4\u56de\u7ed3\u70b9\u7684\u627e\u5230\u7ed3\u70b9\u7684\u5730\u5740<\/span><span style=\"color: #008000;\">*\/<\/span><span style=\"color: #000000;\">\n}\n<\/span><span style=\"color: #008000;\">\/\/<\/span><span style=\"color: #008000;\">\u67e5\u627e2\uff08\u975e\u9012\u5f52\uff09<\/span>\nbitnode iterfind( <span style=\"color: #0000ff;\">int<\/span><span style=\"color: #000000;\"> x, bitree bst ) {\n    <\/span><span style=\"color: #0000ff;\">while<\/span><span style=\"color: #000000;\">( bst ) { \n        <\/span><span style=\"color: #0000ff;\">if<\/span>( x &gt; bst-&gt;data ) bst = bst-&gt;rchild; <span style=\"color: #008000;\">\/*<\/span><span style=\"color: #008000;\">\u5411\u53f3\u5b50\u6811\u4e2d\u79fb\u52a8\uff0c\u7ee7\u7eed\u67e5\u627e<\/span><span style=\"color: #008000;\">*\/<\/span>\n        <span style=\"color: #0000ff;\">else<\/span> <span style=\"color: #0000ff;\">if<\/span>( x &lt; bst-&gt;<span style=\"color: #000000;\">data ) \n            bst <\/span>= bst-&gt;lchild; <span style=\"color: #008000;\">\/*<\/span><span style=\"color: #008000;\">\u5411\u5de6\u5b50\u6811\u4e2d\u79fb\u52a8\uff0c\u7ee7\u7eed\u67e5\u627e<\/span><span style=\"color: #008000;\">*\/<\/span>\n        <span style=\"color: #0000ff;\">else<\/span> <span style=\"color: #008000;\">\/*<\/span><span style=\"color: #008000;\"> x == bst-&gt;data <\/span><span style=\"color: #008000;\">*\/<\/span> \n            <span style=\"color: #0000ff;\">return<\/span> bst; <span style=\"color: #008000;\">\/*<\/span><span style=\"color: #008000;\">\u67e5\u627e\u6210\u529f\uff0c\u8fd4\u56de\u7ed3\u70b9\u7684\u627e\u5230\u7ed3\u70b9\u7684\u5730\u5740<\/span><span style=\"color: #008000;\">*\/<\/span><span style=\"color: #000000;\">\n    } \n    <\/span><span style=\"color: #0000ff;\">return<\/span> null; <span style=\"color: #008000;\">\/*<\/span><span style=\"color: #008000;\">\u67e5\u627e\u5931\u8d25<\/span><span style=\"color: #008000;\">*\/<\/span><span style=\"color: #000000;\"> \n}\n\n<\/span><span style=\"color: #008000;\">\/\/<\/span><span style=\"color: #008000;\">\u67e5\u6700\u5c0f(\u9012\u5f52)<\/span>\n<span style=\"color: #000000;\">bitnode findmin(bitree bst){\n    <\/span><span style=\"color: #0000ff;\">if<\/span>(!<span style=\"color: #000000;\">bst)\n        <\/span><span style=\"color: #0000ff;\">return<\/span><span style=\"color: #000000;\"> null;\n    <\/span><span style=\"color: #0000ff;\">else<\/span> <span style=\"color: #0000ff;\">if<\/span>(!bst-&gt;<span style=\"color: #000000;\">lchild)\n        <\/span><span style=\"color: #0000ff;\">return<\/span><span style=\"color: #000000;\"> bst;\n    <\/span><span style=\"color: #0000ff;\">else<\/span>\n        <span style=\"color: #0000ff;\">return<\/span> findmin(bst-&gt;<span style=\"color: #000000;\">lchild);\n}\n<\/span><span style=\"color: #008000;\">\/\/<\/span><span style=\"color: #008000;\">\u67e5\u6700\u5927\uff08\u8fed\u4ee3\uff09<\/span>\n<span style=\"color: #000000;\">bitnode findmax(bitree bst){\n    <\/span><span style=\"color: #0000ff;\">if<\/span><span style=\"color: #000000;\">(bst)\n        <\/span><span style=\"color: #0000ff;\">while<\/span>(bst-&gt;<span style=\"color: #000000;\">rchild)\n            bst <\/span>= bst-&gt;<span style=\"color: #000000;\">rchild;\n    <\/span><span style=\"color: #0000ff;\">return<\/span><span style=\"color: #000000;\"> bst;\n}\n<\/span><span style=\"color: #008000;\">\/\/<\/span><span style=\"color: #008000;\">\u63d2\u5165<\/span>\nbitree insert( <span style=\"color: #0000ff;\">int<\/span><span style=\"color: #000000;\"> x, bitree bst ) {\n    <\/span><span style=\"color: #0000ff;\">if<\/span>( !<span style=\"color: #000000;\">bst ){\n        <\/span><span style=\"color: #008000;\">\/*<\/span><span style=\"color: #008000;\">\u82e5\u539f\u6811\u4e3a\u7a7a\uff0c\u751f\u6210\u5e76\u8fd4\u56de\u4e00\u4e2a\u7ed3\u70b9\u7684\u4e8c\u53c9\u641c\u7d22\u6811<\/span><span style=\"color: #008000;\">*\/<\/span><span style=\"color: #000000;\">\n        bst <\/span>= <span style=\"color: #0000ff;\">malloc<\/span>(<span style=\"color: #0000ff;\">sizeof<\/span>(<span style=\"color: #0000ff;\">struct<\/span><span style=\"color: #000000;\"> treenode)); \n        bst<\/span>-&gt;data =<span style=\"color: #000000;\"> x; \n        bst<\/span>-&gt;lchild = bst-&gt;rchild =<span style=\"color: #000000;\"> null;\n    }<\/span><span style=\"color: #0000ff;\">else<\/span> <span style=\"color: #008000;\">\/*<\/span><span style=\"color: #008000;\">\u5f00\u59cb\u627e\u8981\u63d2\u5165\u5143\u7d20\u7684\u4f4d\u7f6e<\/span><span style=\"color: #008000;\">*\/<\/span> \n        <span style=\"color: #0000ff;\">if<\/span>( x &lt; bst-&gt;<span style=\"color: #000000;\">data ) \n            bst<\/span>-&gt;lchild = insert( x, bst-&gt;<span style=\"color: #000000;\">lchild); \n        <\/span><span style=\"color: #008000;\">\/*<\/span><span style=\"color: #008000;\">\u9012\u5f52\u63d2\u5165\u5de6\u5b50\u6811<\/span><span style=\"color: #008000;\">*\/<\/span>\n        <span style=\"color: #0000ff;\">else<\/span> <span style=\"color: #0000ff;\">if<\/span>( x &gt; bst-&gt;<span style=\"color: #000000;\">data ) \n            bst<\/span>-&gt;rchild = insert( x, bst-&gt;rchild); <span style=\"color: #008000;\">\/*<\/span><span style=\"color: #008000;\">\u9012\u5f52\u63d2\u5165\u53f3\u5b50\u6811<\/span><span style=\"color: #008000;\">*\/<\/span>\n        <span style=\"color: #008000;\">\/*<\/span><span style=\"color: #008000;\"> else x\u5df2\u7ecf\u5b58\u5728\uff0c\u4ec0\u4e48\u90fd\u4e0d\u505a <\/span><span style=\"color: #008000;\">*\/<\/span> \n    <span style=\"color: #0000ff;\">return<\/span><span style=\"color: #000000;\"> bst; \n}\n<\/span><span style=\"color: #008000;\">\/\/<\/span><span style=\"color: #008000;\">\u5220\u9664<\/span>\nbitree delete( <span style=\"color: #0000ff;\">int<\/span><span style=\"color: #000000;\"> x, bitree bst ) {\n    bitnode tmp; \n    <\/span><span style=\"color: #0000ff;\">if<\/span>( !bst ) printf(<span style=\"color: #800000;\">\"<\/span><span style=\"color: #800000;\">\u8981\u5220\u9664\u7684\u5143\u7d20\u672a\u627e\u5230<\/span><span style=\"color: #800000;\">\"<\/span><span style=\"color: #000000;\">); \n    <\/span><span style=\"color: #0000ff;\">else<\/span> <span style=\"color: #0000ff;\">if<\/span>( x &lt; bst-&gt;<span style=\"color: #000000;\">data )\n        bst<\/span>-&gt;lchild = delete( x, bst-&gt;lchild); <span style=\"color: #008000;\">\/*<\/span><span style=\"color: #008000;\"> \u5de6\u5b50\u6811\u9012\u5f52\u5220\u9664 <\/span><span style=\"color: #008000;\">*\/<\/span>\n    <span style=\"color: #0000ff;\">else<\/span> <span style=\"color: #0000ff;\">if<\/span>( x &gt; bst-&gt;<span style=\"color: #000000;\">data ) \n        bst<\/span>-&gt;rchild = delete( x, bst-&gt;rchild); <span style=\"color: #008000;\">\/*<\/span><span style=\"color: #008000;\"> \u53f3\u5b50\u6811\u9012\u5f52\u5220\u9664 <\/span><span style=\"color: #008000;\">*\/<\/span>\n    <span style=\"color: #0000ff;\">else<\/span> <span style=\"color: #008000;\">\/*<\/span><span style=\"color: #008000;\">\u627e\u5230\u8981\u5220\u9664\u7684\u7ed3\u70b9 <\/span><span style=\"color: #008000;\">*\/<\/span> \n        <span style=\"color: #0000ff;\">if<\/span>( bst-&gt;lchild &amp;&amp; bst-&gt;rchild ) { <span style=\"color: #008000;\">\/*<\/span><span style=\"color: #008000;\">\u88ab\u5220\u9664\u7ed3\u70b9\u6709\u5de6\u53f3\u4e24\u4e2a\u5b50\u7ed3\u70b9 <\/span><span style=\"color: #008000;\">*\/<\/span><span style=\"color: #000000;\"> \n            tmp <\/span>= findmin( bst-&gt;<span style=\"color: #000000;\">rchild );\n            <\/span><span style=\"color: #008000;\">\/*<\/span><span style=\"color: #008000;\">\u5728\u53f3\u5b50\u6811\u4e2d\u627e\u6700\u5c0f\u7684\u5143\u7d20\u586b\u5145\u5220\u9664\u7ed3\u70b9<\/span><span style=\"color: #008000;\">*\/<\/span><span style=\"color: #000000;\">\n            bst<\/span>-&gt;data = tmp-&gt;<span style=\"color: #000000;\">data; \n            bst<\/span>-&gt;rchild = delete( bst-&gt;data, bst-&gt;<span style=\"color: #000000;\">rchild); \n            <\/span><span style=\"color: #008000;\">\/*<\/span><span style=\"color: #008000;\">\u5728\u5220\u9664\u7ed3\u70b9\u7684\u53f3\u5b50\u6811\u4e2d\u5220\u9664\u6700\u5c0f\u5143\u7d20<\/span><span style=\"color: #008000;\">*\/<\/span><span style=\"color: #000000;\">\n        } <\/span><span style=\"color: #0000ff;\">else<\/span> { <span style=\"color: #008000;\">\/*<\/span><span style=\"color: #008000;\">\u88ab\u5220\u9664\u7ed3\u70b9\u6709\u4e00\u4e2a\u6216\u65e0\u5b50\u7ed3\u70b9<\/span><span style=\"color: #008000;\">*\/<\/span><span style=\"color: #000000;\"> \n            tmp <\/span>=<span style=\"color: #000000;\"> bst;\n            <\/span><span style=\"color: #0000ff;\">if<\/span>( !bst-&gt;lchild ) <span style=\"color: #008000;\">\/*<\/span><span style=\"color: #008000;\"> \u6709\u53f3\u5b69\u5b50\u6216\u65e0\u5b50\u7ed3\u70b9<\/span><span style=\"color: #008000;\">*\/<\/span><span style=\"color: #000000;\"> \n                bst <\/span>= bst-&gt;<span style=\"color: #000000;\">rchild;\n            <\/span><span style=\"color: #0000ff;\">else<\/span> <span style=\"color: #0000ff;\">if<\/span>( !bst-&gt;rchild ) <span style=\"color: #008000;\">\/*<\/span><span style=\"color: #008000;\">\u6709\u5de6\u5b69\u5b50\u6216\u65e0\u5b50\u7ed3\u70b9<\/span><span style=\"color: #008000;\">*\/<\/span><span style=\"color: #000000;\"> \n                bst <\/span>= bst-&gt;<span style=\"color: #000000;\">lchild;\n            <\/span><span style=\"color: #0000ff;\">free<\/span><span style=\"color: #000000;\">( tmp );\n        }\n    <\/span><span style=\"color: #0000ff;\">return<\/span><span style=\"color: #000000;\"> bst;\n}<\/span><\/pre>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>#include&lt;bits\/stdc++.h&gt; #define maxsize 100  [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-163","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v18.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>\u4e8c\u53c9\u641c\u7d22\u6811 - imwarming<\/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:\/\/imwarming.com\/?p=163\" \/>\n<meta property=\"og:locale\" content=\"zh_CN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u4e8c\u53c9\u641c\u7d22\u6811 - imwarming\" \/>\n<meta property=\"og:description\" content=\"#include&lt;bits\/stdc++.h&gt; #define maxsize 100 [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/imwarming.com\/?p=163\" \/>\n<meta property=\"og:site_name\" content=\"imwarming\" \/>\n<meta property=\"article:published_time\" content=\"2019-12-25T08:47:00+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u4f5c\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"warming\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4\" \/>\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\":\"WebSite\",\"@id\":\"https:\/\/imwarming.com\/#website\",\"url\":\"https:\/\/imwarming.com\/\",\"name\":\"imwarming\",\"description\":\"\u6c38\u8fdc\u5e74\u8f7b\uff0c\u6c38\u8fdc\u70ed\u6cea\u76c8\u7736\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/imwarming.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"zh-Hans\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/imwarming.com\/?p=163#webpage\",\"url\":\"https:\/\/imwarming.com\/?p=163\",\"name\":\"\u4e8c\u53c9\u641c\u7d22\u6811 - imwarming\",\"isPartOf\":{\"@id\":\"https:\/\/imwarming.com\/#website\"},\"datePublished\":\"2019-12-25T08:47:00+00:00\",\"dateModified\":\"2019-12-25T08:47:00+00:00\",\"author\":{\"@id\":\"https:\/\/imwarming.com\/#\/schema\/person\/9d76869a558bac6dd0d6d58f420ee8ea\"},\"breadcrumb\":{\"@id\":\"https:\/\/imwarming.com\/?p=163#breadcrumb\"},\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/imwarming.com\/?p=163\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/imwarming.com\/?p=163#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"https:\/\/imwarming.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\u4e8c\u53c9\u641c\u7d22\u6811\"}]},{\"@type\":\"Person\",\"@id\":\"https:\/\/imwarming.com\/#\/schema\/person\/9d76869a558bac6dd0d6d58f420ee8ea\",\"name\":\"warming\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/imwarming.com\/#personlogo\",\"inLanguage\":\"zh-Hans\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/c4a913eed88f7601b76bbf2b103472621195b6fa2f742af89b5ea185b60e7cff?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/c4a913eed88f7601b76bbf2b103472621195b6fa2f742af89b5ea185b60e7cff?s=96&d=mm&r=g\",\"caption\":\"warming\"},\"sameAs\":[\"https:\/\/imwarming.com\"],\"url\":\"https:\/\/imwarming.com\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\u4e8c\u53c9\u641c\u7d22\u6811 - imwarming","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:\/\/imwarming.com\/?p=163","og_locale":"zh_CN","og_type":"article","og_title":"\u4e8c\u53c9\u641c\u7d22\u6811 - imwarming","og_description":"#include&lt;bits\/stdc++.h&gt; #define maxsize 100 [&hellip;]","og_url":"https:\/\/imwarming.com\/?p=163","og_site_name":"imwarming","article_published_time":"2019-12-25T08:47:00+00:00","twitter_card":"summary_large_image","twitter_misc":{"\u4f5c\u8005":"warming","\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4":"1 \u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebSite","@id":"https:\/\/imwarming.com\/#website","url":"https:\/\/imwarming.com\/","name":"imwarming","description":"\u6c38\u8fdc\u5e74\u8f7b\uff0c\u6c38\u8fdc\u70ed\u6cea\u76c8\u7736","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/imwarming.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"zh-Hans"},{"@type":"WebPage","@id":"https:\/\/imwarming.com\/?p=163#webpage","url":"https:\/\/imwarming.com\/?p=163","name":"\u4e8c\u53c9\u641c\u7d22\u6811 - imwarming","isPartOf":{"@id":"https:\/\/imwarming.com\/#website"},"datePublished":"2019-12-25T08:47:00+00:00","dateModified":"2019-12-25T08:47:00+00:00","author":{"@id":"https:\/\/imwarming.com\/#\/schema\/person\/9d76869a558bac6dd0d6d58f420ee8ea"},"breadcrumb":{"@id":"https:\/\/imwarming.com\/?p=163#breadcrumb"},"inLanguage":"zh-Hans","potentialAction":[{"@type":"ReadAction","target":["https:\/\/imwarming.com\/?p=163"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/imwarming.com\/?p=163#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"https:\/\/imwarming.com\/"},{"@type":"ListItem","position":2,"name":"\u4e8c\u53c9\u641c\u7d22\u6811"}]},{"@type":"Person","@id":"https:\/\/imwarming.com\/#\/schema\/person\/9d76869a558bac6dd0d6d58f420ee8ea","name":"warming","image":{"@type":"ImageObject","@id":"https:\/\/imwarming.com\/#personlogo","inLanguage":"zh-Hans","url":"https:\/\/secure.gravatar.com\/avatar\/c4a913eed88f7601b76bbf2b103472621195b6fa2f742af89b5ea185b60e7cff?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c4a913eed88f7601b76bbf2b103472621195b6fa2f742af89b5ea185b60e7cff?s=96&d=mm&r=g","caption":"warming"},"sameAs":["https:\/\/imwarming.com"],"url":"https:\/\/imwarming.com\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/imwarming.com\/index.php?rest_route=\/wp\/v2\/posts\/163","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/imwarming.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/imwarming.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/imwarming.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/imwarming.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=163"}],"version-history":[{"count":0,"href":"https:\/\/imwarming.com\/index.php?rest_route=\/wp\/v2\/posts\/163\/revisions"}],"wp:attachment":[{"href":"https:\/\/imwarming.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=163"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/imwarming.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=163"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/imwarming.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=163"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}