{"id":1171,"date":"2013-01-04T17:39:14","date_gmt":"2013-01-04T08:39:14","guid":{"rendered":"http:\/\/fry.no.coocan.jp\/WordPress\/?p=1171"},"modified":"2013-01-06T06:29:19","modified_gmt":"2013-01-05T21:29:19","slug":"%e4%bb%95%e4%ba%8b%e3%81%af%e3%81%98%e3%82%81","status":"publish","type":"post","link":"http:\/\/fry.no.coocan.jp\/WordPress\/?p=1171","title":{"rendered":"\u4ed5\u4e8b\u306f\u3058\u3081"},"content":{"rendered":"<p>1\/1\u4e21\u89aa\u3092\u521d\u8a63\u306b\u9023\u308c\u3066\u884c\u304f<br \/>\n1\/2\u5348\u5f8c\u9577\u5973\u304c\u6765\u308b \u9ad8\u5cf6\u5c4b\u306b\u8cb7\u3044\u7269\u306b\u3044\u3063\u305f\u3089\u53f3\u819d\u304c\u30ae\u30af\u30c3\u3068\u6025\u306b\u75db\u304f\u306a\u308a\u6b69\u884c\u4e0d\u80fd\u3002\u30bf\u30af\u30b7\u30fc\u3067\u5e30\u5b85\uff08980\u5186\uff09\u3002 \u5e74\u672b\u304b\u3089\u53d6\u308a\u7d44\u3093\u3067\u3044\u305f\u5352\u7814\u30b5\u30dd\u30fc\u30c8\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u5b8c\u6210\u3001\u9001\u4ed8\u3002<br \/>\n1\/3\u307b\u307c\u4e00\u65e5\u5bdd\u3066\u66ae\u3089\u3059\u3002\u591c\u3001\u819d\u304c\u5c11\u3057\u5feb\u65b9\u306b\u5411\u304b\u3046\u3002<br \/>\n1\/4\u6574\u5f62\u5916\u79d1\u3078\u76f4\u884c\uff08\u6614\u306e\u30a2\u30b7\u30e2\u306e\u3088\u3046\u306b\u306a\u3089\u6b69\u3051\u308b\u3088\u3046\u306b\u306a\u308b\uff09\u3001\u5348\u5f8c\u5b9f\u5bb6\u3078\u3002<br \/>\n1\/5\u8d85\u82e5\u8005\u53ca\u3073\u8d85\u8001\u4eba\u306e\u9762\u5012\u304c\u5f85\u3063\u3066\u3044\u308b\u3002<\/p>\n<p>\u65b0\u5e74\u65e9\u3005\u3001\u30c8\u30e9\u30d6\u30eb\u8a71\u3067\u3059\u307f\u307e\u305b\u3093\u3002\u6765\u9031\u306f\u3001\u5927\u5b66\u306b\u884c\u3051\u308b\u3088\u3046\u3001\u571f\u65e5\u306e\u30b5\u30fc\u30d6\u3092\u30bb\u30fc\u30d6\u3057\u307e\u3059\u3002<\/p>\n<p>\u51ac\u4f11\u307f\u306e\u4f5c\u54c1\uff1a \u30e1\u30a4\u30f3\u304b\u3089\u9001\u3089\u308c\u308b\u914d\u5217\u306b\u5bfe\u5fdc\u3059\u308b\u9818\u57df\u3092\u30af\u30e9\u30b9\u5185\u3067\u52d5\u7684\u306b\u78ba\u4fdd\u3059\u308b\u4f8b\uff1a<br \/>\n\uff08C++\u306e\u30af\u30e9\u30b9\u306a\u3093\u3066\u4f5c\u3063\u305f\u3053\u3068\u304c\u306a\u304b\u3063\u305f\u306e\u3067\u3001\u5c11\u3057\u30ab\u30f3\u304c\u5fc5\u8981\u3060\u3063\u305f\uff09<br \/>\n===csf.cpp===<br \/>\n#include &lt;stdio.h&gt;<br \/>\n#include &#8220;furu.h&#8221;<br \/>\nfloat dp1[4]={1.0,2.0,3.0,4.0};<br \/>\nvoid main(void) {<br \/>\nFuru *furui=new Furu;<br \/>\nfurui-&gt;set_dp(4, dp1);<br \/>\nfurui-&gt;search_mini();<br \/>\n}<\/p>\n<p>=============<br \/>\n===furu.h===<br \/>\nclass Furu{<br \/>\npublic: \u00a0float *dpz;<br \/>\nfloat mininow; public:<br \/>\nvoid printxx();<br \/>\nvoid set_dp(int size, float *data);<br \/>\nvoid search_mini();<br \/>\n};<br \/>\n==============<br \/>\n===furu.cpp===<br \/>\n#include &lt;<br \/>\niostream&gt;<br \/>\n#include &#8220;furu.h&#8221;<\/p>\n<p>void Furu::set_dp(int size, float *data){<br \/>\ndpz= new float[size];<br \/>\nfor(int i=0; i&lt;size; i++){<br \/>\ndpz[i]=data[i];<br \/>\n}<br \/>\nmininow=200; }<\/p>\n<p>void Furu::printxx(){<br \/>\nprintf(&#8220;%f,%f\\n&#8221;,mininow,dpz[0]); }<\/p>\n<p>void Furu::search_mini(){<br \/>\nprintf(&#8220;%f,%f\\n&#8221;,mininow,dpz[0]);<br \/>\nprintxx();<br \/>\n}<br \/>\n===============<\/p>\n<p>(1\/6\u8ffd\u8a18)<br \/>\n1\/5\u5348\u524d\u4e2d\u3001\u6bcd\u3092\u533b\u8005\u306b\u3001\u7236\u3092\u5893\u53c2\u308a\u306b\u9023\u308c\u3066\u3044\u304f\u3002\u5348\u5f8c\u3001\u5a18\u306e\u5f15\u3063\u8d8a\u3057\u8377\u7269\u3092\u79c1\u306e\u5b9f\u5bb6\u306b\u904b\u3076\u306e\u306b\u4ed8\u304d\u5408\u3046\u30021\/6\u4eca\u65e5\u306f\u3001\uff14\u6642\u304b\u3089\u5a18\u306e\u5f15\u3063\u8d8a\u3057\u306e\u5f8c\u59cb\u672b\u3067\u67cf\u306e\u8449\u306b\u51fa\u304b\u3051\u307e\u3059\u3002<\/p>\n<p>\u819d\u306f\u3001\u305d\u306e\u5f8c\u56de\u5fa9\u3057\u3001\u52e2\u3044\u3088\u304f\u8db3\u3092\u524d\u306b\u632f\u308a\u51fa\u3055\u306a\u3051\u308c\u3070\u75db\u304f\u3042\u308a\u307e\u305b\u3093\u3002\u30a2\u30b7\u30e2\u6b69\u884c\u304b\u3089\u80fd\u6b69\u884c\u306b\u79fb\u884c\u3057\u307e\u3057\u305f\u3002\u660e\u65e5\u306f\u3001\u666e\u901a\u306b\u51fa\u304b\u3051\u3089\u308c\u308b\u306f\u305a\u3067\u3059\u3002<\/p>\n<p>\u819d\u306e\u30e1\u30e2 \u534a\u5e74\u4ee5\u4e0a\u524d\u304b\u3089\u53f3\u819d\u306e\u5916\u5074\u304c\u8171\u306b\u5f15\u3063\u304b\u304b\u308b\u3088\u3046\u306b\u306a\u308a\u6c17\u306b\u306f\u3057\u3066\u3044\u307e\u3057\u305f\u304c\u653e\u3063\u3066\u304a\u304d\u307e\u3057\u305f\u3002\u4e00\u304b\u6708\u3050\u3089\u3044\u524d\u3001\u30c6\u30cb\u30b9\u306e\u5f8c\u306b\u60aa\u5316\u3057\u3001\u66f2\u3052\u4f38\u3070\u3057\u3092\u3086\u3063\u304f\u308a\u3084\u3089\u306a\u3044\u3068\u75db\u307f\u304c\u51fa\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3057\u305f\u300212\u670830\u65e5\u4f4d\u304b\u3089\u3001\u819d\u306e\u53f3\u5074\u304c\u75db\u304f\u306a\u308a\u5909\u3060\u306a\u3068\u601d\u3063\u3066\u3044\u307e\u3057\u305f\u3002\u6b69\u304f\u3068\u304d\u52e2\u3044\u3088\u304f\u8db3\u3092\u524d\u306b\u51fa\u3059\u3068\u3001\u819d\u306e\u524d\u304c\u300c\u30a4\u30c6\u30c3\uff01\u3068\u300d\u306a\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3057\u305f\u3002 1\/2\u65e5\u8cb7\u3044\u7269\u3092\u3057\u3066\u6025\u3044\u3067\u5e30\u308d\u3046\u3068\u3059\u308b\u3068\u8db3\u3092\u524d\u306b\u52e2\u3044\u3088\u304f\u51fa\u3057\u305f\u77ac\u9593\u300c\u30a4\u30c6\u30c6\u300d\u3068\u306a\u308a\u4e00\u6b69\u3082\u6b69\u3051\u306a\u304f\u306a\u308a\u307e\u3057\u305f\u3002\u307b\u3068\u3093\u3069\u4e00\u65e5\u30b1\u30f3\u30b1\u30f3\u751f\u6d3b\u306e\u5f8c\u30011\/3\u6669\u3001\u9759\u304b\u306b\u6b69\u3051\u3070\u75db\u307f\u304c\u306a\u304f\u306a\u308a\u307e\u3057\u305f\u3002\u611f\u3058\u3068\u3057\u3066\u306f\u3001\u8131\u81fc\u304c\u623b\u3063\u305f\u611f\u3058\u3067\u3057\u305f\u3002\uff08\u5e8a\u6696\u3067\u30b4\u30ed\u30b4\u30ed\u3057\u3066\u3044\u305f\u308a\u3001\u304a\u98a8\u5442\u306b\u5165\u3063\u305f\u306e\u3067\u6e29\u307e\u3063\u305f\u306e\u304c\u3088\u304b\u3063\u305f\u306e\u304b\u306a\uff1f\uff09\u30021\/4\u6574\u5f62\u5916\u79d1\u3067\u3001\u300c\u8178\u811b\u976d\u5e2f\u708e\uff08\u3061\u3087\u3046\u3051\u3044\u3058\u3093\u305f\u3044\u3048\u3093\uff1a\u8170\u304b\u3089\u819d\u3078\u3064\u306a\u304c\u308b\u7b4b\u304c\u819d\u306e\u9aa8\u3068\u3076\u3064\u304b\u308b\u30b9\u30dd\u30fc\u30c4\u969c\u5bb3\uff09\u300d\u3068\u8a3a\u65ad\u3055\u308c\u307e\u3057\u305f\u3002\u78ba\u304b\u306b\u8178\u811b\u976d\u5e2f\u708e\u304c\u3042\u308b\u3053\u3068\u306f\u78ba\u304b\u3067\u3059\u304c\u3001\u4eca\u56de\u306e\u6fc0\u75db\u3068\u6025\u306a\u56de\u5fa9\u306f\u3001\u305d\u308c\u3068\u306f\u5225\u306e\u6c17\u304c\u3057\u3066\u304a\u533b\u8005\u3055\u3093\u306b\u300c\u8131\u81fc\u3067\u306f\u306a\u3044\u304b\u300d\u3068\u63d0\u6848\u3057\u307e\u3057\u305f\u304c\u3001\u304a\u533b\u8005\u3055\u3093\u306f\u300c\u819d\u306b\u306f\u8131\u81fc\u306f\u3001\u3042\u308a\u307e\u305b\u3093\u300d\u3068\u306e\u3053\u3068\u3067\u4e00\u8e74\u3002\u8178\u811b\u976d\u5e2f\u708e\u3067\u306f\u3001\u75db\u307f\u306e\u8aac\u660e\u304c\u4ed8\u304b\u306a\u3044\u3093\u3060\u304c\u306a\u3001\u3068\u8ae6\u3081\u308b\u30021\/5\u6bcd\u306e\u4ed8\u304d\u6dfb\u3044\u3067\u5225\u306e\u304a\u533b\u8005\u3055\u3093\u306b\u884c\u3063\u305f\u6642\u3001\u58c1\u306b\u300c\u819d\u306e\u30c8\u30e9\u30d6\u30eb\u300d\u306e\u8a71\u304c\u51fa\u3066\u3044\u3066\u3001\u305d\u308c\u3092\u8aad\u3093\u3067\u3044\u305f\u3089\u3001\u300c\u8131\u81fc\u300d\u3068\u3044\u3046\u306e\u304c\u66f8\u304b\u308c\u3066\u3044\u3066\u3001\u819d\u306b\u3082\u8131\u81fc\u304c\u3042\u308b\u3093\u3060\u3001\u3068\u5206\u308b\u3002\u8131\u81fc\u306a\u3089\u75db\u307f\u306e\u8aac\u660e\u304c\u4ed8\u304d\u307e\u3059\u3002 \u5bfe\u51e6\u6cd5\u306f\u3001\u30b9\u30c8\u30ec\u30c3\u30c1\u3068\u7b4b\u30c8\u30ec\u3067\u3057\u305f\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>1\/1\u4e21\u89aa\u3092\u521d\u8a63\u306b\u9023\u308c\u3066\u884c\u304f 1\/2\u5348\u5f8c\u9577\u5973\u304c\u6765\u308b \u9ad8\u5cf6\u5c4b\u306b\u8cb7\u3044\u7269\u306b\u3044\u3063\u305f\u3089\u53f3\u819d\u304c\u30ae\u30af\u30c3\u3068\u6025\u306b\u75db\u304f\u306a\u308a\u6b69\u884c\u4e0d\u80fd\u3002\u30bf\u30af\u30b7\u30fc\u3067\u5e30\u5b85\uff08980\u5186\uff09\u3002 \u5e74\u672b\u304b\u3089\u53d6\u308a\u7d44\u3093\u3067\u3044\u305f\u5352\u7814\u30b5\u30dd\u30fc\u30c8\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u5b8c\u6210\u3001\u9001\u4ed8\u3002 1\/3\u307b\u307c\u4e00\u65e5\u5bdd\u3066 &hellip; <a href=\"http:\/\/fry.no.coocan.jp\/WordPress\/?p=1171\">\u7d9a\u304d\u3092\u8aad\u3080 <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[1],"tags":[],"_links":{"self":[{"href":"http:\/\/fry.no.coocan.jp\/WordPress\/index.php?rest_route=\/wp\/v2\/posts\/1171"}],"collection":[{"href":"http:\/\/fry.no.coocan.jp\/WordPress\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/fry.no.coocan.jp\/WordPress\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/fry.no.coocan.jp\/WordPress\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/fry.no.coocan.jp\/WordPress\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1171"}],"version-history":[{"count":3,"href":"http:\/\/fry.no.coocan.jp\/WordPress\/index.php?rest_route=\/wp\/v2\/posts\/1171\/revisions"}],"predecessor-version":[{"id":1173,"href":"http:\/\/fry.no.coocan.jp\/WordPress\/index.php?rest_route=\/wp\/v2\/posts\/1171\/revisions\/1173"}],"wp:attachment":[{"href":"http:\/\/fry.no.coocan.jp\/WordPress\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1171"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/fry.no.coocan.jp\/WordPress\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1171"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/fry.no.coocan.jp\/WordPress\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1171"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}