• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            隨筆:152 文章:0 評(píng)論:129 引用:0
            C++博客 首頁(yè) 發(fā)新隨筆
            發(fā)新文章 聯(lián)系 聚合管理

            2010年12月1日

            這個(gè)博客90%記錄的都是和ACM相關(guān)的東西。
            就把ACM留在這里吧。
            一段美好的記憶。
            posted @ 2010-12-01 23:16 Headacher 閱讀(400) | 評(píng)論 (1)編輯 收藏

            2010年9月11日

                 摘要:   閱讀全文
            posted @ 2010-09-11 11:29 Headacher 閱讀(726) | 評(píng)論 (0)編輯 收藏

            2010年5月3日

                 摘要:   閱讀全文
            posted @ 2010-05-03 17:48 Headacher 閱讀(634) | 評(píng)論 (0)編輯 收藏

            2010年5月2日

                 摘要:   閱讀全文
            posted @ 2010-05-02 17:45 Headacher 閱讀(969) | 評(píng)論 (0)編輯 收藏

            2010年5月1日

            2010年4月26日

                 摘要:   閱讀全文
            posted @ 2010-04-26 23:20 Headacher 閱讀(320) | 評(píng)論 (2)編輯 收藏

            2010年4月19日

            Ch3
            #include < iostream >
            #include
            < vector >
            using ? namespace ?std;
            int
            ?main()
            {
            ????vector
            < int >
            t;
            ????
            for (vector < int > ::size_type?iter = 0 ;iter < 10 ;iter ++
            )
            ????????t.push_back(iter);
            ????
            for (vector < int > ::iterator?iter = t.begin();iter != t.end();iter ++
            )
            ????????cout
            <<* iter <<
            endl;
            ????vector
            < int > ::iterator?it1 = t.begin(),it2 =
            t.end(),iter;
            ????vector
            < int > ::difference_type?ss = t.begin() -
            t.end();
            ????iter
            = t.begin() + t.size() / 2
            ;
            ????cout
            <<* iter <<
            endl;
            ????iter
            = t.begin() + t.end() / 2
            ;????
            ????cout
            << ss <<
            endl;
            ????
            return ? 0
            ;
            }
            #include
            < iostream >

            #include
            < string >
            #include
            < cctype >
            using ? namespace ?std;
            string ?s1 = " abc "
            ;
            int
            ?main()
            {
            ????
            string
            ::iterator?t;
            ????
            for (t = s1.begin();t != s1.end();t ++
            )
            ????????cout
            << isupper( * t) <<
            endl;
            }
            #include
            < iostream >

            #include
            < bitset >
            #include
            < string >
            using ? namespace ?std;
            string ?s = " 11111111 "
            ;
            bitset
            < 8 > a(s, 0 , 8
            );
            int
            ?main()
            {
            ????unsigned?
            int ?t =
            a.to_ulong();
            ????cout
            << t <<
            endl;
            ????
            for ( int ?it = 0 ;it < 3 ;it ++
            )
            ????????cout
            <<
            a[it];
            ????cout
            <<
            endl;
            ????cout
            <<
            a.count();
            ????
            return ? 0
            ;
            }
            posted @ 2010-04-19 23:29 Headacher 閱讀(258) | 評(píng)論 (0)編輯 收藏

            2010年4月18日

                 摘要:   閱讀全文
            posted @ 2010-04-18 02:58 Headacher 閱讀(434) | 評(píng)論 (0)編輯 收藏

            2010年3月6日

            2010年2月18日

                 摘要: 眾所周知,科學(xué)計(jì)數(shù)法既可以表示整數(shù),也可以表示小數(shù),并且表示的數(shù)據(jù)范圍很大。
            在計(jì)算機(jī)中也引入了類似于十進(jìn)制科學(xué)計(jì)數(shù)法的方法來(lái)表示實(shí)數(shù),稱為浮點(diǎn)數(shù)表示法,因其小數(shù)點(diǎn)位置不固定而得名。

            1.浮點(diǎn)數(shù)的表示方法。

            用浮點(diǎn)數(shù)表示法不僅可以表示整數(shù)和純小數(shù),而且可以表示一般的實(shí)數(shù),其表示范圍比定點(diǎn)數(shù)要大得多。因?yàn)闊o(wú)論采用定點(diǎn)還是浮點(diǎn)表示,n位編碼總是最多只能表示2n個(gè)數(shù),所以采用浮點(diǎn)表示法雖然擴(kuò)大了表示范圍,但并沒(méi)有增加可表示的數(shù)值的個(gè)數(shù),只是數(shù)據(jù)間的間隔變稀疏了。
              閱讀全文
            posted @ 2010-02-18 23:52 Headacher 閱讀(3922) | 評(píng)論 (1)編輯 收藏
            CALENDER
            <2025年5月>
            27282930123
            45678910
            11121314151617
            18192021222324
            25262728293031
            1234567

            公告

            留言簿(8)

            隨筆分類

            隨筆檔案

            ACM Teammates

            The One

            搜索

            •  

            積分與排名

            • 積分 - 132980
            • 排名 - 194

            最新評(píng)論

            閱讀排行榜

            評(píng)論排行榜


            Powered By: 博客園
            模板提供滬江博客

            亚洲Av无码国产情品久久| 国产精品18久久久久久vr| 9久久9久久精品| 久久ww精品w免费人成| 无码超乳爆乳中文字幕久久 | 久久久久久综合一区中文字幕| 久久中文骚妇内射| 久久男人Av资源网站无码软件| 久久香蕉国产线看观看精品yw| 色欲综合久久中文字幕网| 久久久久久九九99精品| 91久久精品91久久性色| 久久免费线看线看| 久久99精品久久久久久不卡| 欧美伊人久久大香线蕉综合69| 久久天天躁狠狠躁夜夜av浪潮| 亚洲国产成人久久精品99| 中文字幕乱码久久午夜| 香蕉久久av一区二区三区| 国产精品久久免费| 久久人人爽人人爽AV片| 久久人人爽人人爽人人爽| 中文字幕久久精品无码| 一级做a爰片久久毛片16| 久久伊人五月天论坛| 无码国产69精品久久久久网站| 欧美久久综合性欧美| 亚洲精品99久久久久中文字幕| 久久夜色精品国产噜噜亚洲a | 欧美日韩精品久久久免费观看| 久久国产欧美日韩精品免费| 久久久婷婷五月亚洲97号色| 精品国产青草久久久久福利 | 久久免费看黄a级毛片| 丁香五月网久久综合| 香蕉久久夜色精品国产尤物 | 2021国产成人精品久久| 伊人久久精品无码二区麻豆| 97久久精品人人澡人人爽| 久久亚洲中文字幕精品有坂深雪| 国产精品久久久久一区二区三区 |