• <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 閱讀(435) | 評(píng)論 (0)編輯 收藏

            2010年3月6日

            2010年2月18日

                 摘要: 眾所周知,科學(xué)計(jì)數(shù)法既可以表示整數(shù),也可以表示小數(shù),并且表示的數(shù)據(jù)范圍很大。
            在計(jì)算機(jī)中也引入了類(lèi)似于十進(jìn)制科學(xué)計(jì)數(shù)法的方法來(lái)表示實(shí)數(shù),稱(chēng)為浮點(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)

            隨筆分類(lèi)

            隨筆檔案

            ACM Teammates

            The One

            搜索

            •  

            積分與排名

            • 積分 - 132987
            • 排名 - 194

            最新評(píng)論

            閱讀排行榜

            評(píng)論排行榜


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

            无码AV中文字幕久久专区| 国内精品久久久久久久影视麻豆| 免费久久人人爽人人爽av| 77777亚洲午夜久久多喷| 久久午夜电影网| 一本色道久久综合| 亚洲国产二区三区久久| 久久精品人妻中文系列| 国产AⅤ精品一区二区三区久久| 久久大香萑太香蕉av| 91亚洲国产成人久久精品网址| 久久婷婷色综合一区二区| 国产69精品久久久久9999| 伊人久久大香线蕉AV色婷婷色| 亚洲国产成人久久综合一| 亚洲色欲久久久综合网东京热| 精品久久久久久国产免费了| 久久久无码精品亚洲日韩按摩 | 2021精品国产综合久久| 一本色综合久久| 国内精品久久久久久久影视麻豆| 国产亚洲精久久久久久无码| 亚洲国产视频久久| 亚洲国产天堂久久综合| 精品久久综合1区2区3区激情 | 青青青国产精品国产精品久久久久 | 久久久精品人妻一区二区三区四| 精品久久久一二三区| 青青草国产97免久久费观看| 久久AAAA片一区二区| 韩国三级中文字幕hd久久精品 | 亚洲欧美日韩久久精品| 久久97久久97精品免视看秋霞 | 亚洲AV日韩AV天堂久久| 久久久亚洲AV波多野结衣| 2021国产精品午夜久久| 欧美伊人久久大香线蕉综合| 漂亮人妻被中出中文字幕久久 | 国产午夜福利精品久久| AV狠狠色丁香婷婷综合久久 | 精品国产一区二区三区久久蜜臀|