{"id":47,"date":"2013-10-24T17:02:00","date_gmt":"2013-10-24T17:02:00","guid":{"rendered":""},"modified":"2013-10-24T17:02:00","modified_gmt":"2013-10-24T17:02:00","slug":"","status":"publish","type":"post","link":"http:\/\/weizn.net\/?p=47","title":{"rendered":"\u6298\u534a\u6cd5\u67e5\u627e"},"content":{"rendered":"<p>#include &lt;stdio.h&gt;<br \/>\n#include &lt;stdlib.h&gt;<br \/>\n#include &lt;conio.h&gt;<\/p>\n<p>int Dichotomy_Match(int *Array,int ArrayLength,int Elem)<br \/>\n{<br \/>\n&nbsp;&nbsp;&nbsp; \/\/\u4f20\u5165\u6570\u7ec4\u7531\u5c0f\u5230\u5927\u6392\u5217<br \/>\n&nbsp;&nbsp;&nbsp; int *head=NULL,*end=NULL,*mid=NULL;<\/p>\n<p>&nbsp;&nbsp;&nbsp; head=Array;<br \/>\n&nbsp;&nbsp;&nbsp; end=&amp;Array[ArrayLength-1];<br \/>\n&nbsp;&nbsp;&nbsp; mid=&amp;Array[ArrayLength\/2-1];<\/p>\n<p>&nbsp;&nbsp;&nbsp; while(1)<br \/>\n&nbsp;&nbsp;&nbsp; {<br \/>\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if(end-head&lt;0 || mid-Array&gt;=ArrayLength || mid-Array&lt;0) return 0;<br \/>\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if(*mid==Elem) return 1;<br \/>\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if(*mid&lt;Elem)<br \/>\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br \/>\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; head=mid+1;<br \/>\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mid+=(end-head)\/2+1;<br \/>\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; continue;<br \/>\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br \/>\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if(*mid&gt;Elem)<br \/>\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br \/>\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; end=mid-1;<br \/>\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mid-=(end-head)\/2+1;<br \/>\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; continue;<br \/>\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br \/>\n&nbsp;&nbsp;&nbsp; }<\/p>\n<p>&nbsp;&nbsp;&nbsp; return 0;<br \/>\n}<\/p>\n<p>int main()<br \/>\n{<br \/>\n&nbsp;&nbsp;&nbsp; int number[10],elem;<br \/>\n&nbsp;&nbsp;&nbsp; int i;<\/p>\n<p>&nbsp;&nbsp;&nbsp; printf(&#8220;\u8bf7\u8f93\u5165\u5341\u4e2a\u9012\u589e\u6574\u6570:\\n&#8221;);<br \/>\n&nbsp;&nbsp;&nbsp; for(i=0; i&lt;10; i++)<br \/>\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; scanf(&#8220;%d&#8221;,&amp;number[i]);<br \/>\n&nbsp;&nbsp;&nbsp; printf(&#8220;\u8bf7\u8f93\u5165\u67e5\u627e\u7684\u5143\u7d20:&#8221;);<br \/>\n&nbsp;&nbsp;&nbsp; scanf(&#8220;%d&#8221;,&amp;elem);<br \/>\n&nbsp;&nbsp;&nbsp; i=Dichotomy_Match(number,sizeof(number)\/4,elem);<br \/>\n&nbsp;&nbsp;&nbsp; if(i)<br \/>\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; printf(&#8220;TRUE&#8221;);<br \/>\n&nbsp;&nbsp;&nbsp; else<br \/>\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; printf(&#8220;FALSE&#8221;);<br \/>\n&nbsp;&nbsp;&nbsp; puts(&#8220;&#8221;);<br \/>\n&nbsp;&nbsp;&nbsp; getch();<\/p>\n<p>&nbsp;&nbsp;&nbsp; return 0;<br \/>\n}<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>\n&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>#include &lt;stdio.h&gt;<br \/>\n#include &lt;stdlib.h&gt;<br \/>\n#include &lt;conio.h&gt;<\/p>\n<p>int Dichotomy_Match(int *Array,int ArrayLength,int Elem)<br \/>\n{<br \/>\n&nbsp;&nbsp;&nbsp; \/\/\u4f20\u5165\u6570\u7ec4\u7531\u5c0f\u5230\u5927\u6392\u5217<br \/>\n&nbsp;&nbsp;&nbsp; int *head=NULL,&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[326],"tags":[],"class_list":["post-47","post","type-post","status-publish","format-standard","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v16.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>\u6298\u534a\u6cd5\u67e5\u627e - Wayne&#039;s Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/weizn.net\/?p=47\" \/>\n<meta property=\"og:locale\" content=\"zh_CN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u6298\u534a\u6cd5\u67e5\u627e - Wayne&#039;s Blog\" \/>\n<meta property=\"og:description\" content=\"#include &lt;stdio.h&gt; #include &lt;stdlib.h&gt; #include &lt;conio.h&gt;int Dichotomy_Match(int *Array,int ArrayLength,int Elem) { &nbsp;&nbsp;&nbsp; \/\/\u4f20\u5165\u6570\u7ec4\u7531\u5c0f\u5230\u5927\u6392\u5217 &nbsp;&nbsp;&nbsp; int *head=NULL,...\" \/>\n<meta property=\"og:url\" content=\"http:\/\/weizn.net\/?p=47\" \/>\n<meta property=\"og:site_name\" content=\"Wayne&#039;s Blog\" \/>\n<meta property=\"article:published_time\" content=\"2013-10-24T17:02: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=\"zinan\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 \u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebSite\",\"@id\":\"http:\/\/weizn.net\/#website\",\"url\":\"http:\/\/weizn.net\/\",\"name\":\"Wayne&#039;s Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"http:\/\/weizn.net\/#\/schema\/person\/e88bc12c590502d8b6249326f960b264\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/weizn.net\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"zh-Hans\"},{\"@type\":\"WebPage\",\"@id\":\"http:\/\/weizn.net\/?p=47#webpage\",\"url\":\"http:\/\/weizn.net\/?p=47\",\"name\":\"\\u6298\\u534a\\u6cd5\\u67e5\\u627e - Wayne&#039;s Blog\",\"isPartOf\":{\"@id\":\"http:\/\/weizn.net\/#website\"},\"datePublished\":\"2013-10-24T17:02:00+00:00\",\"dateModified\":\"2013-10-24T17:02:00+00:00\",\"breadcrumb\":{\"@id\":\"http:\/\/weizn.net\/?p=47#breadcrumb\"},\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/weizn.net\/?p=47\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/weizn.net\/?p=47#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\\u9996\\u9875\",\"item\":\"http:\/\/weizn.net\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\\u6298\\u534a\\u6cd5\\u67e5\\u627e\"}]},{\"@type\":\"Article\",\"@id\":\"http:\/\/weizn.net\/?p=47#article\",\"isPartOf\":{\"@id\":\"http:\/\/weizn.net\/?p=47#webpage\"},\"author\":{\"@id\":\"http:\/\/weizn.net\/#\/schema\/person\/e88bc12c590502d8b6249326f960b264\"},\"headline\":\"\\u6298\\u534a\\u6cd5\\u67e5\\u627e\",\"datePublished\":\"2013-10-24T17:02:00+00:00\",\"dateModified\":\"2013-10-24T17:02:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\/\/weizn.net\/?p=47#webpage\"},\"wordCount\":326,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/weizn.net\/#\/schema\/person\/e88bc12c590502d8b6249326f960b264\"},\"articleSection\":[\"\\u6570\\u636e\\u7ed3\\u6784\\u53ca\\u7b97\\u6cd5\"],\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"http:\/\/weizn.net\/?p=47#respond\"]}]},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"http:\/\/weizn.net\/#\/schema\/person\/e88bc12c590502d8b6249326f960b264\",\"name\":\"zinan\",\"logo\":{\"@id\":\"http:\/\/weizn.net\/#personlogo\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\u6298\u534a\u6cd5\u67e5\u627e - Wayne&#039;s Blog","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":"http:\/\/weizn.net\/?p=47","og_locale":"zh_CN","og_type":"article","og_title":"\u6298\u534a\u6cd5\u67e5\u627e - Wayne&#039;s Blog","og_description":"#include &lt;stdio.h&gt; #include &lt;stdlib.h&gt; #include &lt;conio.h&gt;int Dichotomy_Match(int *Array,int ArrayLength,int Elem) { &nbsp;&nbsp;&nbsp; \/\/\u4f20\u5165\u6570\u7ec4\u7531\u5c0f\u5230\u5927\u6392\u5217 &nbsp;&nbsp;&nbsp; int *head=NULL,...","og_url":"http:\/\/weizn.net\/?p=47","og_site_name":"Wayne&#039;s Blog","article_published_time":"2013-10-24T17:02:00+00:00","twitter_card":"summary_large_image","twitter_misc":{"\u4f5c\u8005":"zinan","\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4":"2 \u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebSite","@id":"http:\/\/weizn.net\/#website","url":"http:\/\/weizn.net\/","name":"Wayne&#039;s Blog","description":"","publisher":{"@id":"http:\/\/weizn.net\/#\/schema\/person\/e88bc12c590502d8b6249326f960b264"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/weizn.net\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"zh-Hans"},{"@type":"WebPage","@id":"http:\/\/weizn.net\/?p=47#webpage","url":"http:\/\/weizn.net\/?p=47","name":"\u6298\u534a\u6cd5\u67e5\u627e - Wayne&#039;s Blog","isPartOf":{"@id":"http:\/\/weizn.net\/#website"},"datePublished":"2013-10-24T17:02:00+00:00","dateModified":"2013-10-24T17:02:00+00:00","breadcrumb":{"@id":"http:\/\/weizn.net\/?p=47#breadcrumb"},"inLanguage":"zh-Hans","potentialAction":[{"@type":"ReadAction","target":["http:\/\/weizn.net\/?p=47"]}]},{"@type":"BreadcrumbList","@id":"http:\/\/weizn.net\/?p=47#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"http:\/\/weizn.net\/"},{"@type":"ListItem","position":2,"name":"\u6298\u534a\u6cd5\u67e5\u627e"}]},{"@type":"Article","@id":"http:\/\/weizn.net\/?p=47#article","isPartOf":{"@id":"http:\/\/weizn.net\/?p=47#webpage"},"author":{"@id":"http:\/\/weizn.net\/#\/schema\/person\/e88bc12c590502d8b6249326f960b264"},"headline":"\u6298\u534a\u6cd5\u67e5\u627e","datePublished":"2013-10-24T17:02:00+00:00","dateModified":"2013-10-24T17:02:00+00:00","mainEntityOfPage":{"@id":"http:\/\/weizn.net\/?p=47#webpage"},"wordCount":326,"commentCount":0,"publisher":{"@id":"http:\/\/weizn.net\/#\/schema\/person\/e88bc12c590502d8b6249326f960b264"},"articleSection":["\u6570\u636e\u7ed3\u6784\u53ca\u7b97\u6cd5"],"inLanguage":"zh-Hans","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["http:\/\/weizn.net\/?p=47#respond"]}]},{"@type":["Person","Organization"],"@id":"http:\/\/weizn.net\/#\/schema\/person\/e88bc12c590502d8b6249326f960b264","name":"zinan","logo":{"@id":"http:\/\/weizn.net\/#personlogo"}}]}},"_links":{"self":[{"href":"http:\/\/weizn.net\/index.php?rest_route=\/wp\/v2\/posts\/47","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/weizn.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/weizn.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/weizn.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/weizn.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=47"}],"version-history":[{"count":0,"href":"http:\/\/weizn.net\/index.php?rest_route=\/wp\/v2\/posts\/47\/revisions"}],"wp:attachment":[{"href":"http:\/\/weizn.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=47"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/weizn.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=47"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/weizn.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=47"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}