{"id":264,"date":"2024-06-28T22:33:42","date_gmt":"2024-06-28T14:33:42","guid":{"rendered":"http:\/\/www.heartwarming.online:8003\/?p=264"},"modified":"2024-06-28T22:33:45","modified_gmt":"2024-06-28T14:33:45","slug":"%e5%8d%95%e9%93%be%e8%a1%a8","status":"publish","type":"post","link":"https:\/\/blog.heartwarming.online\/index.php\/2024\/06\/28\/%e5%8d%95%e9%93%be%e8%a1%a8\/","title":{"rendered":"\u5355\u94fe\u8868"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">\u672c\u8d28\uff1a<\/h2>\n\n\n\n<p>\u672c\u8d28\u4e0a\u5c31\u662f\u7528\u6570\u7ec4\u6a21\u62df\u52a8\u6001\u94fe\u8868\uff0c\u4e5f\u5c31\u662f\u8bf4\u8fd9\u662f\u9759\u6001\u94fe\u8868\uff0c\u9759\u6001\u6a21\u62df\u94fe\u8868\u901f\u5ea6\u5feb\u3002<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u57fa\u672c\u539f\u7406\uff1a<\/h2>\n\n\n\n<p>\u5c31\u662f\u5229\u7528\u6570\u7ec4\u6765\u6a21\u62df\u6574\u4e2a\u8fc7\u7a0b\uff0c\u5982\u5728\u5934\u8282\u70b9\u63d2\u5165\u6570\u636e\uff0c\u5220\u9664\u6570\u636e\uff0c\u5728\u4efb\u610f\u7ed3\u70b9\u63d2\u5165\u6570\u636e\u2026\u2026\u6bcf\u4e2a\u7ed3\u70b9\u6709\u4e00\u4e2a\u503ce[i],\u6709\u4e00\u4e2a\u6307\u9488ne[i]\uff0c<\/p>\n\n\n\n<p>head\u6307\u7684\u662f\u5934\u8282\u70b9\u7684\u4e0b\u6807\uff0cidx\u8868\u793a\u5f53\u524d\u7528\u5230\u4e86\u7b2c\u51e0\u4e2a\u7ed3\u70b9\uff0c\u8fd9\u4e2a\u7ed3\u70b9\u662f\u53ef\u7528\u7684\u3002<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><div class='fancybox-wrapper lazyload-container-unload' data-fancybox='post-images' href='https:\/\/blog.heartwarming.online\/wp-content\/uploads\/2024\/06\/image-15.png'><img class=\"lazyload lazyload-style-1\" src=\"data:image\/svg+xml;base64,PCEtLUFyZ29uTG9hZGluZy0tPgo8c3ZnIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgc3Ryb2tlPSIjZmZmZmZmMDAiPjxnPjwvZz4KPC9zdmc+\"  loading=\"lazy\" decoding=\"async\" width=\"1000\" height=\"600\" data-original=\"https:\/\/blog.heartwarming.online\/wp-content\/uploads\/2024\/06\/image-15.png\" src=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB\/AAffA0nNPuCLAAAAAElFTkSuQmCC\" alt=\"\" class=\"wp-image-265\"  sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" \/><\/div><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">\u5b9e\u73b0\u529f\u80fd\uff1a<\/h2>\n\n\n\n<h4 class=\"wp-block-heading\">1\u3001\u5728\u5934\u8282\u70b9\u5904\u63d2\u5165\u4e00\u4e2a\u7ed3\u70b9<\/h4>\n\n\n\n<pre class=\"wp-block-preformatted\">void add_to_head(int k)<br>{<br> &nbsp; &nbsp; &nbsp;e[idx]=k;<br> &nbsp; &nbsp; &nbsp;ne[k]=head;<br> &nbsp; &nbsp; &nbsp;head=idx++;<br>}<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">2\u3001\u5728\u5176\u4ed6\u4f4d\u7f6e\u63d2\u5165\u4e00\u4e2a\u65b0\u7ed3\u70b9<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>void insert(int k,int c)<br>{<br> &nbsp; &nbsp; e&#91;idx]=c;<br> &nbsp; &nbsp; ne&#91;idx]=ne&#91;k];<br> &nbsp; &nbsp; ne&#91;k]=idx++;<br>}<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">3\u3001\u5220\u9664\u7ed3\u70b9<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>void remove(int k)<br>{<br> &nbsp;  ne&#91;k]=ne&#91;ne&#91;k]];<br>}<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">\u4ee3\u7801\u5b9e\u73b0\uff1a<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>#include &lt;iostream&gt;<br>using namespace std;<br>const int N=100010;<br>int e&#91;N],ne&#91;N],head,idx,n;<br>\u200b<br>void init()<br>{<br> &nbsp; &nbsp;head=-1;<br> &nbsp; &nbsp;idx=0;<br>}<br>void add_to_head(int x)<br>{<br> &nbsp; &nbsp;e&#91;idx]=x;<br> &nbsp; &nbsp;ne&#91;idx]=head;<br> &nbsp; &nbsp;head=idx++;<br>}<br>\u200b<br>void remove(int k)<br>{<br> &nbsp; &nbsp;ne&#91;k]=ne&#91;ne&#91;k]];<br> &nbsp; &nbsp;<br>}<br>\u200b<br>void insert(int k,int x)<br>{<br> &nbsp; &nbsp;e&#91;idx]=x;<br> &nbsp; &nbsp;ne&#91;idx]=ne&#91;k];<br> &nbsp; &nbsp;ne&#91;k]=idx++;<br>}<br>int main()<br>{<br> &nbsp; &nbsp;init();<br> &nbsp; &nbsp;scanf(\"%d\",&amp;n);<br> &nbsp; &nbsp;while(n--)<br> &nbsp;  {<br> &nbsp; &nbsp; &nbsp; &nbsp;int k,x;<br> &nbsp; &nbsp; &nbsp; &nbsp;char c;<br> &nbsp; &nbsp; &nbsp; &nbsp;cin&gt;&gt;c;<br> &nbsp; &nbsp; &nbsp; &nbsp;if(c=='H')<br> &nbsp; &nbsp; &nbsp;  {<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;scanf(\"%d\",&amp;x);<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;add_to_head(x);<br> &nbsp; &nbsp; &nbsp;  }<br> &nbsp; &nbsp; &nbsp; &nbsp;else if(c=='D')<br> &nbsp; &nbsp; &nbsp;  {<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;scanf(\"%d\",&amp;k);<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if(!k)<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;head=ne&#91;head];<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;else<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;remove(k-1);<br> &nbsp; &nbsp; <br> &nbsp; &nbsp; &nbsp; }<br> &nbsp; &nbsp; &nbsp; else<br> &nbsp; &nbsp; &nbsp; {<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; scanf(\"%d%d\",&amp;k,&amp;x);<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; insert(k-1,x);<br> &nbsp; &nbsp; &nbsp; }<br> &nbsp; &nbsp; &nbsp; <br> &nbsp;  }<br> &nbsp; &nbsp;for(int i=head;i!=-1;i=ne&#91;i])<br> &nbsp;  {<br> &nbsp; &nbsp; &nbsp; &nbsp;printf(\"%d \",e&#91;i]);<br> &nbsp;  }<br> &nbsp; &nbsp;return 0;<br> &nbsp; &nbsp;<br>}<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>\u672c\u8d28\uff1a \u672c\u8d28\u4e0a\u5c31\u662f\u7528\u6570\u7ec4\u6a21\u62df\u52a8\u6001\u94fe\u8868\uff0c\u4e5f\u5c31\u662f\u8bf4\u8fd9\u662f\u9759\u6001\u94fe\u8868\uff0c\u9759\u6001\u6a21\u62df\u94fe\u8868\u901f\u5ea6\u5feb\u3002 \u57fa\u672c\u539f\u7406\uff1a \u5c31\u662f\u5229\u7528\u6570\u7ec4\u6765\u6a21 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4,32],"tags":[30],"class_list":["post-264","post","type-post","status-publish","format-standard","hentry","category-blog","category-32","tag-30"],"jetpack_sharing_enabled":true,"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/blog.heartwarming.online\/index.php\/wp-json\/wp\/v2\/posts\/264","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.heartwarming.online\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.heartwarming.online\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.heartwarming.online\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.heartwarming.online\/index.php\/wp-json\/wp\/v2\/comments?post=264"}],"version-history":[{"count":1,"href":"https:\/\/blog.heartwarming.online\/index.php\/wp-json\/wp\/v2\/posts\/264\/revisions"}],"predecessor-version":[{"id":266,"href":"https:\/\/blog.heartwarming.online\/index.php\/wp-json\/wp\/v2\/posts\/264\/revisions\/266"}],"wp:attachment":[{"href":"https:\/\/blog.heartwarming.online\/index.php\/wp-json\/wp\/v2\/media?parent=264"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.heartwarming.online\/index.php\/wp-json\/wp\/v2\/categories?post=264"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.heartwarming.online\/index.php\/wp-json\/wp\/v2\/tags?post=264"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}