• <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>

            電子科大實(shí)驗(yàn)報(bào)告之四:罐裝飲料瓶(Matlab的解法)

            題目:
            設(shè)易拉罐的側(cè)面的厚度1單位,
            s=2*PI*r*h+4*PI*r^2
            h高度,r為半徑,體積V=PI*h*r^2.
            V一定時(shí),求使s最小的r和h.

            Matlab的解法:
            解法1:
            v=350;
            s=0;h=0;r=0;
            for j=1:6

            ?r_=(v/(j*pi))^(1/3)
            ?h_=j*r_
            ?s_=2*pi*r_*h_+4*pi*r_*r_
            ?
            ?if(s>s_ | s==0)

            ??s=s_;
            ??h=h_;
            ??r=r_;

            ?end
            end
            s
            r
            h
            r/h


            解法2:
            v=350;
            s=[];h=[];r=[];
            for j=1:6

            ?r(j)=(v/(j*pi))^(1/3)
            ?h(j)=j*r(j)
            ?s(j)=2*pi*r(j)*h(j)+4*pi*r(j)^2

            end

            [minCost,j]=min(s)
            r(j)
            h(j)
            r(j)/h(j)


            解法3:
            cost=inline('(2*pi*x+4*pi)*(350/(pi*x))^(2/3)');
            s=fminbnd(cost,0.001,25)
            feval(cost,s)

            fplot(cost,[0.1 50]);grid on;

            posted @ 2006-04-06 14:13 張沈鵬 閱讀(490) | 評(píng)論 (0)編輯 收藏
             

            這學(xué)期電腦被家中沒(méi)收,只能在網(wǎng)吧上網(wǎng),什么也干不了,很是郁悶。每天到圖書(shū)館翻看C++和神經(jīng)網(wǎng)絡(luò)的書(shū),在紙上寫(xiě)代碼...................


            秋天的時(shí)候,
            落葉帶著一生的惆悵,
            第一次學(xué)會(huì)飛翔。

            春天的期望,
            夏天的夢(mèng)想,
            在微涼的風(fēng)中,
            成為沒(méi)有回聲的吟唱。

            許多年以后,
            我們的故事,
            終究還是被所有的人遺忘。

            一段塵封的記憶,
            層層疊疊,
            埋藏在亙古的時(shí)光。

            吻別,
            芬芳,歌聲和陽(yáng)光。

            最后的最后,
            我才明白,
            一切的盡頭,
            就是我出發(fā)的地方。

            posted @ 2006-03-22 17:25 張沈鵬 閱讀(293) | 評(píng)論 (2)編輯 收藏
             

            http://giallo.sourceforge.net/
            Giallo is a C++ library for asynchronous network programming, based on proactor style notification, independent of underlying OS demultiplexing methods. The aim is to get this accepted into Boost.

            http://asio.sourceforge.net/
            asio is a cross-platform C++ library for network programming that provides developers with a consistent asynchronous I/O model using a modern C++ approach.

            posted @ 2006-03-08 21:44 張沈鵬 閱讀(634) | 評(píng)論 (0)編輯 收藏
             

            看到有前輩寫(xiě)了一個(gè)UTF-8與UNICODE相互轉(zhuǎn)換的代碼,順便提一下,希望可以給大家提供一點(diǎn)幫助.
            下面是一些編碼格式的bit長(zhǎng)

            Examples of fixed-width encoding forms:

            Type Each character
            encoded as
            Notes
              7-bit a single 7-bit quantity example: ISO 646
              8-bit G0/G1 a single 8-bit quantity with constraints on use of C0 and C1 spaces
              8-bit a single 8-bit quantity with no constraints on use of C1 space
              8-bit EBCDIC a single 8-bit quantity with the EBCDIC conventions rather than ASCII conventions
            16-bit (UCS-2) a single 16-bit quantity within a code space of 0..FFFF
            32-bit (UCS-4) a single 32-bit quantity within a code space 0..7FFFFFFF
            32-bit (UTF-32) a single 32-bit quantity within a code space of 0..10FFFF
            16-bit DBCS process code a single 16-bit quantity example: UNIX widechar implementations of Asian CCS's
            32-bit DBCS process code a single 32-bit quantity example: UNIX widechar implementations of Asian CCS's
            DBCS Host two 8-bit quantities following IBM host conventions

            Examples of variable-width encoding forms:

            Name Characters are encoded as Notes
            UTF-8 a mix of one to four 8-bit code units in Unicode
            and one to six code units in 10646
            used only with Unicode/10646
            UTF-16 a mix of one to two 16 bit code units used only with Unicode/10646

            Boost中提供了一個(gè)UTF-8 Codecvt Facet,可以在utf8和UCS-4(Unicode-32)之間轉(zhuǎn)換.
            使用方式如下

              //...
              // My encoding type
              typedef wchar_t ucs4_t;

              std::locale old_locale;
              std::locale utf8_locale(old_locale,new utf8_codecvt_facet<ucs4_t>);

              // Set a New global locale
              std::locale::global(utf8_locale);

              //  UCS-4 轉(zhuǎn)換為 UTF-8
              {
                std::wofstream ofs("data.ucd");
                ofs.imbue(utf8_locale);
                std::copy(ucs4_data.begin(),ucs4_data.end(),
                      std::ostream_iterator<ucs4_t,ucs4_t>(ofs));
              }

              // 讀入 UTF-8 ,轉(zhuǎn)換為 UCS-4 
              std::vector<ucs4_t> from_file;
              {
                std::wifstream ifs("data.ucd");
                ifs.imbue(utf8_locale);
                ucs4_t item = 0;
                while (ifs >> item) from_file.push_back(item);
              }
              //...
            UTF-8 Codecvt Facet詳見(jiàn)
            http://www.boost.org/libs/serialization/doc/codecvt.html

            posted @ 2006-02-15 17:19 張沈鵬 閱讀(2667) | 評(píng)論 (2)編輯 收藏
             

            boost在路上...tokenizer
            tokenizer - Break of a string or other character sequence into a series of tokens, from John Bandela
            tokenizer - 分解字串,提取內(nèi)容.作者: John Bandela

            例一:
            // simple_example_1.cpp
            #include<iostream>
            #include<boost/tokenizer.hpp>
            #include<string>

            int main(){
               using namespace std;
               using namespace boost;
               string s = "This is,  a test";
               tokenizer<> tok(s);
               for(tokenizer<>::iterator beg=tok.begin(); beg!=tok.end();++beg){
                   cout << *beg << "\n";
               }
            }

            輸出
            This
            is
            a
            test

            tokenizer默認(rèn)將單詞以空格和標(biāo)點(diǎn)為邊界分開(kāi).

            例二:
            #include<iostream>
            #include<boost/tokenizer.hpp>
            #include<string>

            int main(){
               using namespace std;
               using namespace boost;
               string s = "Field 1,\"putting quotes around fields, allows commas\",Field 3";
               tokenizer<escaped_list_separator<char> > tok(s);
               for(tokenizer<escaped_list_separator<char> >::iterator beg=tok.begin(); beg!=tok.end();++beg){
                   cout << *beg << "\n";
               }
            }
            輸出
            Field 1
            putting quotes around fields, allows commas
            Field 3

            雙引號(hào)之間可以有標(biāo)點(diǎn).


            例三:
            // simple_example_3.cpp
            #include<iostream>
            #include<boost/tokenizer.hpp>
            #include<string>

            int main(){
               using namespace std;
               using namespace boost;
               string s = "12252001";
               int offsets[] = {2,2,4};
               offset_separator f(offsets, offsets+3);
               tokenizer<offset_separator> tok(s,f);
               for(tokenizer<offset_separator>::iterator beg=tok.begin(); beg!=tok.end();++beg){
                   cout << *beg << "\n";
               }
            }

            把12252001分解為
            12
            25
            2001

            例4:
            // char_sep_example_1.cpp
            #include <iostream>
            #include <boost/tokenizer.hpp>
            #include <string>

            int main()
            {
              std::string str = ";!!;Hello|world||-foo--bar;yow;baz|";
              typedef boost::tokenizer<boost::char_separator<char> >
                tokenizer;
              boost::char_separator<char> sep("-;|");
              tokenizer tokens(str, sep);
              for (tokenizer::iterator tok_iter = tokens.begin();
                   tok_iter != tokens.end(); ++tok_iter)
                std::cout << "<" << *tok_iter << "> ";
              std::cout << "\n";
              return EXIT_SUCCESS;
            }

            輸出
            <!!> <Hello> <world> <foo> <bar> <yow> <baz>
            自定義分隔的標(biāo)點(diǎn)

            例5:
                // char_sep_example_2.cpp
                #include <iostream>
                #include <boost/tokenizer.hpp>
                #include <string>

                int main()
                {
                    std::string str = ";;Hello|world||-foo--bar;yow;baz|";
                    typedef boost::tokenizer<boost::char_separator<char> >
                        tokenizer;
                    boost::char_separator<char> sep("-;", "|", boost::keep_empty_tokens);
                    tokenizer tokens(str, sep);
                    for (tokenizer::iterator tok_iter = tokens.begin();
                         tok_iter != tokens.end(); ++tok_iter)
                      std::cout << "<" << *tok_iter << "> ";
                    std::cout << "\n";
                    return EXIT_SUCCESS;
                }

            The output is:

                <> <> <Hello> <|> <world> <|> <> <|> <> <foo> <> <bar> <yow> <baz> <|> <>
            去除-; , 保留|但將它看作是分隔符,當(dāng)兩個(gè)分隔符相鄰的時(shí)候會(huì)自動(dòng)加空格

            例6:
                // char_sep_example_3.cpp
                #include <iostream>
                #include <boost/tokenizer.hpp>
                #include <string>

                int main()
                {
                   std::string str = "This is,  a test";
                   typedef boost::tokenizer<boost::char_separator<char> > Tok;
                   boost::char_separator<char> sep; // default constructed
                   Tok tok(str, sep);
                   for(Tok::iterator tok_iter = tok.begin(); tok_iter != tok.end(); ++tok_iter)
                     std::cout << "<" << *tok_iter << "> ";
                   std::cout << "\n";
                   return EXIT_SUCCESS;
                }

            The output is:

                <This> <is> <,> <a> <test>
            保留標(biāo)點(diǎn)但將它看作分隔符

            posted @ 2006-01-25 18:00 張沈鵬 閱讀(750) | 評(píng)論 (0)編輯 收藏
             

            MinGW的下載安裝我就不多說(shuō)了
            1.
            設(shè)置MinGW的環(huán)境變量,在
            E:\!程序\C++\boost_1_33_0\tools\build\jam_src
            目錄下運(yùn)行
            build.bat mingw
            編譯bjam,在
            E:\!程序\C++\boost_1_33_0\tools\build\jam_src\bin.ntx86
            下生成bjam.exe,Copy it to windows directory.

            2.
            在Boost的解壓目錄下運(yùn)行
            bjam "-sTOOLS=mingw" install
            就可以了,編譯完成的文件會(huì)自動(dòng)放在C:\Boost\lib下
            注意,boost的解壓目錄的路徑中不要有中文或!之類(lèi)的標(biāo)點(diǎn),不然可能有許多奇怪的錯(cuò)誤.

            3.
            可以在lib目錄下你需要的庫(kù)中找到有jam文件的目錄,運(yùn)行
            bjam "-sTOOLS=mingw"
            就可以只編譯該庫(kù),編譯完成后會(huì)防止stage\lib目錄下

            posted @ 2006-01-25 17:59 張沈鵬 閱讀(515) | 評(píng)論 (0)編輯 收藏
             
            用dll要一個(gè)導(dǎo)入庫(kù)和頭文件,對(duì)于Gcc/G++可以用工具dlltool來(lái)生成這個(gè)導(dǎo)入庫(kù).命令如下:

            dlltool --dllname foo.dll --def foo.def --output-lib libfoo.a

            dlltool在MinGW的工具包中有.
            然后可以用 -l libfoo 調(diào)用庫(kù)(libfoo的lib前綴可以省略,注意libfoo不要加后綴名,-L可以指定庫(kù)的目錄)
            posted @ 2006-01-19 02:41 張沈鵬 閱讀(975) | 評(píng)論 (0)編輯 收藏
             

            用mingw32-make前修改一下makefile文件,改為如下

            # DEBUG can be set to YES to include debugging info, or NO otherwise(不是DEBUG)
            DEBUG????????? := NO

            # PROFILE can be set to YES to include profiling info, or NO otherwise
            PROFILE??????? := NO

            # TINYXML_USE_STL can be used to turn on STL support. NO, then STL
            # will not be used. YES will include the STL files.(使用STL,選擇的話,則可以使用std::string)
            TINYXML_USE_STL := YES

            另外可以tinyxml_guide.zip可以下載.

            以下轉(zhuǎn)載:

            TinyXml學(xué)習(xí)筆記

            張弛<zhangchi@china.com>

            一、????? TinyXml的特點(diǎn)

            TinyXml是一個(gè)基于DOM模型的、非驗(yàn)證的輕量級(jí)C++解釋器。

            1.????? SAX和DOM

            目前XML的解析主要有兩大模型:SAX和DOM。

            其中SAX是基于事件的,其基本工作流程是分析XML文檔,當(dāng)發(fā)現(xiàn)了一個(gè)新的元素時(shí),產(chǎn)生一個(gè)對(duì)應(yīng)事件,并調(diào)用相應(yīng)的用戶(hù)處理函數(shù)。這種方式占用內(nèi)存少,速度快,但用戶(hù)程序相應(yīng)得會(huì)比較復(fù)雜。

            而DOM(文檔對(duì)象模型),則是在分析時(shí),一次性的將整個(gè)XML文檔進(jìn)行分析,并在內(nèi)存中形成對(duì)應(yīng)的樹(shù)結(jié)構(gòu),同時(shí),向用戶(hù)提供一系列的接口來(lái)訪問(wèn)和編輯該樹(shù)結(jié)構(gòu)。這種方式占用內(nèi)存大,速度往往慢于SAX,但可以給用戶(hù)提供一個(gè)面向?qū)ο蟮脑L問(wèn)接口,對(duì)用戶(hù)更為友好。

            2.????? 驗(yàn)證和非驗(yàn)證

            對(duì)于一個(gè)特定的XML文檔而言,其正確性分為兩個(gè)層次。首先是其格式應(yīng)該符合XML的基本格式要求,比如第一行要有聲明,標(biāo)簽的嵌套層次必須前后一致等等,符合這些要求的文件,就是一個(gè)合格的XML文件,稱(chēng)作well-formatted。但除此之外,一個(gè)XML文檔因其內(nèi)容的不同還必須在語(yǔ)義上符合相應(yīng)的標(biāo)準(zhǔn),這些標(biāo)準(zhǔn)由相應(yīng)的DTD文件或者Schema文件來(lái)定義,符合了這些定義要求的XML文件,稱(chēng)作valid。

            因此,解析器也分為兩種,一種是驗(yàn)證的,即會(huì)跟據(jù)XML文件中的聲明,用相應(yīng)的DTD文件對(duì)XML文件進(jìn)行校驗(yàn),檢查它是否滿足DTD文件的要求。另一種是忽略DTD文件,只要基本格式正確,就可以進(jìn)行解析。

            就我所知,驗(yàn)證的解析器通常都是比較重量級(jí)的。TinyXml不支持驗(yàn)證,但是體積很小,用在解析格式較為簡(jiǎn)單的XML文件,比如配置文件時(shí),特別的合適。

            二、 TinyXml的構(gòu)建和使用
            1.????? 獲取

            TinyXml首頁(yè)在http://www.grinninglizard.com/tinyxml/index.html,從這里可以找到最新版本的源代碼,目前的版本是2.3.4。

            2.構(gòu)建

            TinyXml在構(gòu)建時(shí)可以選擇是否支持STL,選擇的話,則可以使用std::string,所以通常應(yīng)該打開(kāi)這個(gè)選項(xiàng)。

            在Windows上,TinyXml的源碼包里提供了VC6的工程文件,直接用它就可以生成兩個(gè)靜態(tài)庫(kù)(帶STL和不帶STL),非常容易。唯一需要注意的是,默認(rèn)生成的庫(kù)是單線程的,如果用在多線程的項(xiàng)目中,需要改動(dòng)一下配置,生成相應(yīng)的多線程庫(kù)。

            在Unix平臺(tái)上,TinyXml的源碼包里只提供了一個(gè)Makefile,對(duì)于典型的Linux系統(tǒng),或裝了gcc和gmake的其他Unix,這個(gè)Makefile足夠用了,我在RH9和RHEL4上測(cè)試,簡(jiǎn)單的make就成功了。需要注意的有以下幾點(diǎn):默認(rèn)的編譯是不支持STL的,可以通過(guò)編輯Makefile的TINYXML_USE_STL := NO那一行,把NO改成YES就可以支持STL了;還有默認(rèn)只生成了一個(gè)測(cè)試程序,沒(méi)有生成任何庫(kù),如果要生成靜態(tài)庫(kù)的話,可以用ar命令,將生成的幾個(gè)目標(biāo)文件打包就行了,如果要生成動(dòng)態(tài)庫(kù),則需要加上-fpic參數(shù)重新編譯。

            3.????? 使用

            構(gòu)建了相應(yīng)的庫(kù)之后,在使用了它們的工程中,只要在連接時(shí)把他們連上就行了。需要注意的是,如果需要STL支持,在編譯用到了TinyXml的文件時(shí),需要定義一個(gè)宏TIXML_USE_STL,對(duì)gcc,可以使用參數(shù)-DTIXML_USE_STL,對(duì)cl.exe(VC),可以使用參數(shù)/DTIXML_USE_STL,如果嫌麻煩,可以直接定義在 tinyxml.h文件里。

            三、 TinyXml的編程模型1.????? 類(lèi)之間的關(guān)系

            TinyXml實(shí)現(xiàn)的時(shí)DOM訪問(wèn)模型,因此提供了一系列的類(lèi)對(duì)應(yīng)XML文件中的各個(gè)節(jié)點(diǎn)。主要類(lèi)間的關(guān)系如下圖所示:

            TiXmlBase:其他類(lèi)的基類(lèi),是個(gè)抽象類(lèi)

            TiXmlNode:表示一個(gè)節(jié)點(diǎn),包含節(jié)點(diǎn)的一般方法,如訪問(wèn)自節(jié)點(diǎn)、兄弟節(jié)點(diǎn)、編輯自身、編輯子節(jié)電

            TiXmlDocument:表示整個(gè)XML文檔,不對(duì)應(yīng)其中某個(gè)特定的節(jié)點(diǎn)。

            TiXmlElement:表示元素節(jié)點(diǎn),可以包含子節(jié)點(diǎn)和TiXmlAttribute

            TiXmlComment:表示注釋

            TiXmlDeclaration:表示聲明

            TiXmlText:表示文本節(jié)點(diǎn)

            TiXmlUnknown:表示未知節(jié)點(diǎn),通常是出錯(cuò)了

            TiXmlAttribute:表示一個(gè)元素的屬性

            下面是一個(gè)簡(jiǎn)單的例子:

            <?xml version="1.0" encoding="utf-8" ?>

            <!-This is only a sample-->

            <book>

            ?????? <name>TinyXml How To</name>

            ?????? <price unit=”RMB”>20</price>

            ?????? <description>Some words…</description>

            </ book >

            整個(gè)文檔,對(duì)應(yīng)TiXmlDocument

            book,name,price, description,都對(duì)應(yīng)TiXmlElement

            第一行對(duì)應(yīng)一個(gè)TiXmlDeclaration

            第二行對(duì)應(yīng)一個(gè)TiXmlComment

            “TinyXml How To”對(duì)應(yīng)一個(gè)TiXmlText

            unit則是price的一個(gè)TiXmlAttribute

            這些類(lèi)與XML文件中的相應(yīng)元素都有很好的對(duì)應(yīng)關(guān)系,因此相信參照TinyXml的文檔,可以很容易的掌握各個(gè)方法的使用。

            2.??需要注意的問(wèn)題

            各類(lèi)之間的轉(zhuǎn)換

            由于各個(gè)節(jié)點(diǎn)類(lèi)都從TiXmlNode繼承,在使用時(shí)常常需要將TiXmlNode*類(lèi)型的指針轉(zhuǎn)換為其派生類(lèi)的指針,在進(jìn)行這種轉(zhuǎn)換時(shí),應(yīng)該首先使用由TiXmlNode類(lèi)提供的一系列轉(zhuǎn)換函數(shù),如ToElement(void),而不是c++的dynamic_cast

            檢查返回值

            由于TinyXml是一個(gè)非校驗(yàn)的解析器,因此當(dāng)解析一個(gè)文件時(shí),很可能文件并不包含我們預(yù)期的某個(gè)節(jié)點(diǎn),在這種情況下,TinyXml將返回空指針。因此,必須要對(duì)返回值進(jìn)行檢查,否則將很容易出現(xiàn)內(nèi)存訪問(wèn)的錯(cuò)誤。

            如何重頭建立一個(gè)XML文件

            先建立一個(gè)TiXmlDocument對(duì)象,然后,載入某個(gè)模板,或者直接插入一個(gè)節(jié)點(diǎn)作為根節(jié)點(diǎn),接著就可以像打開(kāi)一個(gè)已有的XML文件那樣對(duì)它進(jìn)行操作了。

            四、總結(jié)

            TinyXml最大的特點(diǎn)就是它很小,可以很方便的靜態(tài)連接到程序里。對(duì)于像配置文件、簡(jiǎn)單的數(shù)據(jù)文件這類(lèi)文件的解析,它很適合。但是由于它是非驗(yàn)證的,因此需要在程序里做許多檢查工做,加重了程序編寫(xiě)的負(fù)擔(dān)。因此對(duì)于復(fù)雜的XML文件,我覺(jué)得最好還是用驗(yàn)證的解析器來(lái)處理。
            Trackback: http://tb.blog.csdn.net/TrackBack.aspx?PostId=477335

            posted @ 2006-01-15 15:19 張沈鵬 閱讀(2380) | 評(píng)論 (6)編輯 收藏
             
            提取未確定數(shù)目的參數(shù)
            在標(biāo)準(zhǔn)庫(kù)的<cstdarg>中專(zhuān)門(mén)提供一組宏來(lái)訪問(wèn)它們.
            例:
            void error(int severity ...)
            {
             va_list ap;
             //用va_start初始化ap,第二個(gè)參數(shù)是函數(shù)的最后一個(gè)有名的形式參數(shù)的名字
             va_start(ap,severity);
             for(;;){
              //宏va_arg是按順序提取各個(gè)無(wú)名參數(shù),第二個(gè)參數(shù)是假定的該無(wú)名參數(shù)的類(lèi)型
              chap* p = va_arg(ap,char*);
              if(p==0)break;
              cerr<<p<<' ';
             }
             va_end(ap);//調(diào)用va_start后必須用va_end退出
             cerr<<'n';
             if(severity) exit(severity);
            }
            posted @ 2006-01-14 21:31 張沈鵬 閱讀(226) | 評(píng)論 (0)編輯 收藏
             
            網(wǎng)頁(yè)中可以用,將來(lái)也可以用的XUL的程序中去
            見(jiàn)
            http://free5.ys168.com/?ak747

            下的XUL的文件夾
            將來(lái)可以在XUL程序中使用,下一步的改進(jìn)計(jì)劃是成為類(lèi)似Windows Media Player五個(gè)星標(biāo)。
            posted @ 2006-01-11 14:05 張沈鵬 閱讀(275) | 評(píng)論 (0)編輯 收藏
            僅列出標(biāo)題
            共7頁(yè): 1 2 3 4 5 6 7 
             
            99久久精品国产综合一区| 一本大道加勒比久久综合| 久久精品国产半推半就| 久久中文字幕人妻丝袜| 品成人欧美大片久久国产欧美...| 久久天天躁狠狠躁夜夜avapp| 亚洲综合伊人久久大杳蕉| 伊人久久大香线蕉综合热线| 久久综合视频网站| 久久精品无码一区二区日韩AV| 久久综合综合久久97色| 丁香五月网久久综合| 国产精品久久久久jk制服| 久久精品天天中文字幕人妻 | 国产精品中文久久久久久久| A级毛片无码久久精品免费| 久久香蕉国产线看观看99| 精品久久8x国产免费观看| 国产精品久久久久国产A级| 久久精品中文闷骚内射| 日本精品久久久久中文字幕| 91性高湖久久久久| 怡红院日本一道日本久久| 久久久综合香蕉尹人综合网| 久久久久久午夜精品| 亚洲级αV无码毛片久久精品| 久久精品国产网红主播| 欧美久久精品一级c片片| 久久中文精品无码中文字幕| 久久久久亚洲精品日久生情| 91精品国产综合久久精品| 狠狠色综合久久久久尤物| 无码任你躁久久久久久久| 久久国产精品无码HDAV| 国产精品久久久久乳精品爆| 久久精品国产亚洲AV香蕉| 久久精品一区二区三区不卡| 久久人妻无码中文字幕| 91精品国产色综久久| 婷婷久久久亚洲欧洲日产国码AV| 国产91久久综合|