青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

ACM___________________________

______________白白の屋
posts - 182, comments - 102, trackbacks - 0, articles - 0
<2010年8月>
25262728293031
1234567
891011121314
15161718192021
22232425262728
2930311234

常用鏈接

留言簿(24)

隨筆分類(332)

隨筆檔案(182)

FRIENDS

搜索

積分與排名

最新隨筆

最新評(píng)論

閱讀排行榜

評(píng)論排行榜

STL MAP 詳解 (zz)

Posted on 2010-08-25 11:53 MiYu 閱讀(1397) 評(píng)論(0)  編輯 收藏 引用 所屬分類: ACM_資料

 MiYu原創(chuàng), 轉(zhuǎn)帖請(qǐng)注明 : 轉(zhuǎn)載自 ______________白白の屋    

 

由于STL是一個(gè)統(tǒng)一的整體,map的很多用法都和STL中其它的東 西結(jié)合在一起;map中由于它內(nèi)部有序,由紅黑樹(shù)保證,因此很多函數(shù)執(zhí)行的時(shí)間復(fù)雜度都是log2N的,如果用map函數(shù)可以實(shí)現(xiàn)的功能,而STL Algorithm也可以完成該功能,建議用map自帶函數(shù),效率高一些……Map是STL的一個(gè)關(guān)聯(lián)容器,它提供一對(duì)一(其中第一個(gè)可以稱為關(guān)鍵字,每個(gè)關(guān)鍵字只能在map中出現(xiàn)一次,第二個(gè)可能稱為該關(guān)鍵字 的值)的數(shù)據(jù)處理能力,由于這個(gè)特性,它完成有可能在我們處理一對(duì)一數(shù)據(jù)的時(shí)候,在編程上提供快速通道。這里說(shuō)下map內(nèi)部數(shù)據(jù)的組織,map內(nèi)部自建一 顆紅黑樹(shù)(一種非嚴(yán)格意義上的平衡二叉樹(shù)),這顆樹(shù)具有對(duì)數(shù)據(jù)自動(dòng)排序的功能,所以在map內(nèi)部所有的數(shù)據(jù)都是有序的,后邊我們會(huì)見(jiàn)識(shí)到有序的好處。下面舉例說(shuō)明什么是一對(duì)一的數(shù)據(jù)映射。比如一個(gè)班級(jí)中,每個(gè)學(xué)生的學(xué)號(hào)跟他的姓名就存在著一一映射的關(guān)系,這個(gè)模型用map可能輕易描述,很明顯學(xué) 號(hào)用int描述,姓名用字符串描述(本篇文章中不用char *來(lái)描述字符串,而是采用STL中string來(lái)描述),

下面給出map描述代碼:Map<int, string> mapStudent;

1.       map的構(gòu)造函數(shù)map共提供了6個(gè)構(gòu)造函數(shù),這塊涉及到內(nèi)存分配器這些東西,略過(guò)不表,在下面我們將接觸到一些map的構(gòu)造方法,這里要說(shuō)下的就是,我們通常用如下方法構(gòu)造一個(gè)map:Map<int, string> mapStudent;

2.       數(shù)據(jù)的插入在構(gòu)造map容器后,我們就可以往里面插入數(shù)據(jù)了。這里講三種插入數(shù)據(jù)的方法:

第一種:用insert函數(shù)插入pair數(shù)據(jù),下面舉例說(shuō)明(以下代碼雖然是隨手寫的,應(yīng)該可以在VC和GCC下編譯通過(guò),大家可以運(yùn)行下看什么效果,在VC下請(qǐng)加入這條語(yǔ)句,屏蔽4786警告  #pragma warning (disable:4786) )
#include <map>
#include 
<string>
#include 
<iostream>
Using namespace std;
int main()
{       
map<intstring> mapStudent;       
mapStudent.insert(pair<intstring>(1, “student_one”));      
mapStudent.insert(pair<intstring>(2, “student_two”));       
mapStudent.insert(pair<intstring>(3, “student_three”));       
map<intstring>::iterator  iter;       
for(iter = mapStudent.begin(); iter != mapStudent.end(); iter++){       
Cout<<iter->first<<”   ”<<iter->second<<end;}}
第二種:用insert函數(shù)插入value_type數(shù)據(jù),下面舉例說(shuō)明
#include <map>
#include <string>
#include <iostream>
using namespace std;Int main()
{       
map<intstring> mapStudent;       
mapStudent.insert(map<intstring>::value_type (1, “student_one”));       
mapStudent.insert(map<intstring>::value_type (2, “student_two”));       
mapStudent.insert(map<intstring>::value_type (3, “student_three”));       
map<intstring>::iterator  iter;       
for(iter = mapStudent.begin(); iter != mapStudent.end(); iter++){      
 Cout<<iter->first<<”   ”<<iter->second<<end;}}
第三種:用數(shù)組方式插入數(shù)據(jù),下面舉例說(shuō)明
#include <map>
#include <string>
#include <iostream>
using namespace std;
int main(){       
Map<intstring> mapStudent;       
mapStudent[1=  “student_one”;       
mapStudent[2=  “student_two”;       
mapStudent[3=  “student_three”;       
map<intstring>::iterator  iter;      
for(iter = mapStudent.begin(); iter != mapStudent.end(); iter++){       
Cout<<iter->first<<”   ”<<iter->second<<end;}}

以上三種用法,雖然都可以實(shí)現(xiàn)數(shù)據(jù)的插入,但是它們是有區(qū)別的,當(dāng)然了第一種和第二種在效果上是完成一樣的,用insert函數(shù)插入數(shù)據(jù),在數(shù)據(jù)的 插入上涉及到集合的唯一性這個(gè)概念,即當(dāng)map中有這個(gè)關(guān)鍵字時(shí),insert操作是插入數(shù)據(jù)不了的,但是用數(shù)組方式就不同了,它可以覆蓋以前該關(guān)鍵字對(duì) 應(yīng)的值,

用程序說(shuō)明

mapStudent.insert(map<int, string>::value_type (1, “student_one”));

mapStudent.insert(map<int, string>::value_type (1, “student_two”));

上面這兩條語(yǔ)句執(zhí)行后,map中1這個(gè)關(guān)鍵字對(duì)應(yīng)的值是“student_one”,第二條語(yǔ)句并沒(méi)有生效,那么這就涉及到我們?cè)趺粗纈nsert語(yǔ)句是否插入成功的問(wèn)題了,可以用pair來(lái)獲得是否插入成功,程序如下

Pair<map<int, string>::iterator, bool> Insert_Pair;

Insert_Pair = mapStudent.insert(map<int, string>::value_type (1, “student_one”));

我們通過(guò)pair的第二個(gè)變量來(lái)知道是否插入成功,它的第一個(gè)變量返回的是一個(gè)map的迭代器,如果插入成功的話Insert_Pair.second應(yīng)該是true的,否則為false。下面給出完成代碼,演示插入成功與否問(wèn)題

#include <map>

#include <string>

#include <iostream>

using namespace std;

int main(){       

Map<int, string> mapStudent;

Pair<map<int, string>::iterator, bool> Insert_Pair;       

Insert_Pair = mapStudent.insert(pair<int, string>(1, “student_one”));       

If(Insert_Pair.second == true)       {              

Cout<<”Insert Successfully”<<endl;       }      

 Else       {              

Cout<<”Insert Failure”<<endl;       }      

Insert_Pair = mapStudent.insert(pair<int, string>(1, “student_two”));      

If(Insert_Pair.second == true)       {              

Cout<<”Insert Successfully”<<endl;       }      

Else       {              

Cout<<”Insert Failure”<<endl;       }       

map<int, string>::iterator  iter;       

for(iter = mapStudent.begin(); iter != mapStudent.end(); iter++){      

 Cout<<iter->first<<”   ”<<iter->second<<end;}}

大家可以用如下程序,看下用數(shù)組插入在數(shù)據(jù)覆蓋上的效果

#include <map>

#include <string>

#include <iostream>

using namespace std;

int main(){       

Map<int, string> mapStudent;      

mapStudent[1] =  “student_one”;       

mapStudent[1] =  “student_two”;       

mapStudent[2] =  “student_three”;       

map<int, string>::iterator  iter;       

for(iter = mapStudent.begin(); iter != mapStudent.end(); iter++){      

 Cout<<iter->first<<”   ”<<iter->second<<end;}}

3.       map的大小在往map里面插入了數(shù)據(jù),我們?cè)趺粗喇?dāng)前已經(jīng)插入了多少數(shù)據(jù)呢,可以用size函數(shù),用法如下:Int nSize = mapStudent.size();4.       數(shù)據(jù)的遍歷這里也提供三種方法,對(duì)map進(jìn)行遍歷第一種:應(yīng)用前向迭代器,上面舉例程序中到處都是了,略過(guò)不表第二種:應(yīng)用反相迭代器,下面舉例說(shuō)明,要體會(huì)效果,請(qǐng)自個(gè)動(dòng)手運(yùn)行程序

#include <map>

#include <string>

#include <iostream>

Using namespace std;

Int main(){       

Map<int, string> mapStudent;       

mapStudent.insert(pair<int, string>(1, “student_one”));      

mapStudent.insert(pair<int, string>(2, “student_two”));       

mapStudent.insert(pair<int, string>(3, “student_three”));       

map<int, string>::reverse_iterator  iter;      

for(iter = mapStudent.rbegin(); iter != mapStudent.rend(); iter++){       

Cout<<iter->first<<”   ”<<iter->second<<end;}}

第三種:用數(shù)組方式,程序說(shuō)明如下

#include <map>

#include <string>

#include <iostream>

Using namespace std;

Int main(){       

Map<int, string> mapStudent;       

mapStudent.insert(pair<int, string>(1, “student_one”));       

mapStudent.insert(pair<int, string>(2, “student_two”));       

mapStudent.insert(pair<int, string>(3, “student_three”));       

int nSize = mapStudent.size()//此處有誤,應(yīng)該是 for(int nIndex = 1; nIndex <= nSize; nIndex++)//by rainfish       

for(int nIndex = 0; nIndex < nSize; nIndex++){       

Cout<<mapStudent[nIndex]<<end;}}

5.       數(shù)據(jù)的查找(包括判定這個(gè)關(guān)鍵字是否在map中出現(xiàn))在這里我們將體會(huì),map在數(shù)據(jù)插入時(shí)保證有序的好處。要判定一個(gè)數(shù)據(jù)(關(guān)鍵字)是否在map中出現(xiàn)的方法比較多,這里標(biāo)題雖然是數(shù)據(jù)的查找,在這里將穿插著大量的map基本用法。這里給出三種數(shù)據(jù)查找方法第一種:用count函數(shù)來(lái)判定關(guān)鍵字是否出現(xiàn),其缺點(diǎn)是無(wú)法定位數(shù)據(jù)出現(xiàn)位置,由于map的特性,一對(duì)一的映射關(guān)系,就決定了count函數(shù)的返回值只有兩個(gè),要么是0,要么是1,出現(xiàn)的情況,當(dāng)然是返回1了第二種:用find函數(shù)來(lái)定位數(shù)據(jù)出現(xiàn)位置,它返回的一個(gè)迭代器,當(dāng)數(shù)據(jù)出現(xiàn)時(shí),它返回?cái)?shù)據(jù)所在位置的迭代器,如果map中沒(méi)有要查找的數(shù)據(jù),它返回的迭代器等于end函數(shù)返回的迭代器,程序說(shuō)明

#include <map>

#include <string>

#include <iostream>

Using namespace std;

Int main(){       

Map<int, string> mapStudent;       

mapStudent.insert(pair<int, string>(1, “student_one”));       

mapStudent.insert(pair<int, string>(2, “student_two”));       

mapStudent.insert(pair<int, string>(3, “student_three”));       

map<int, string>::iterator iter;       

iter = mapStudent.find(1);

if(iter != mapStudent.end()){       

Cout<<”Find, the value is ”<<iter->second<<endl;}

Else{       Cout<<”Do not Find”<<endl;}}

第三種:這個(gè)方法用來(lái)判定數(shù)據(jù)是否出現(xiàn),是顯得笨了點(diǎn),但是,我打算在這里講解Lower_bound函數(shù)用法,這個(gè)函數(shù)用來(lái)返回要查找關(guān)鍵字的下界(是一個(gè)迭代器)Upper_bound函數(shù)用法,這個(gè)函數(shù)用來(lái)返回要查找關(guān)鍵字的上界(是一個(gè)迭代器)例如:map中已經(jīng)插入了1,2,3,4的話,如果lower_bound(2)的話,返回的2,而upper-bound(2)的話,返回的就是3Equal_range函數(shù)返回一個(gè)pair,pair里面第一個(gè)變量是Lower_bound返回的迭代器,pair里面第二個(gè)迭代器是Upper_bound返回的迭代器,如果這兩個(gè)迭代器相等的話,則說(shuō)明map中不出現(xiàn)這個(gè)關(guān)鍵字,程序說(shuō)明

#include <map>

#include <string>

#include <iostream>

Using namespace std;

Int main(){       

Map<int, string> mapStudent;       

mapStudent[1] =  “student_one”;       

mapStudent[3] =  “student_three”;       

mapStudent[5] =  “student_five”;       

map<int, string>::iterator  iter;

iter = mapStudent.lower_bound(2);{       //返回的是下界3的迭代器       

Cout<<iter->second<<endl;}

iter = mapStudent.lower_bound(3);{       //返回的是下界3的迭代器      

 Cout<<iter->second<<endl;}

iter = mapStudent.upper_bound(2);{       //返回的是上界3的迭代器       

Cout<<iter->second<<endl;}

iter = mapStudent.upper_bound(3);{       //返回的是上界5的迭代器       

Cout<<iter->second<<endl;}

Pair<map<int, string>::iterator, map<int, string>::iterator> mapPair;

mapPair = mapStudent.equal_range(2);

if(mapPair.first == mapPair.second)       {      

cout<<”Do not Find”<<endl;}

Else{Cout<<”Find”<<endl;}

mapPair = mapStudent.equal_range(3);

if(mapPair.first == mapPair.second)       {       

cout<<”Do not Find”<<endl;}

Else{Cout<<”Find”<<endl;}}

6.       數(shù)據(jù)的清空與判空清空map中的數(shù)據(jù)可以用clear()函數(shù),判定map中是否有數(shù)據(jù)可以用empty()函數(shù),它返回true則說(shuō)明是空map7.       數(shù)據(jù)的刪除這里要用到erase函數(shù),它有三個(gè)重載了的函數(shù),下面在例子中詳細(xì)說(shuō)明它們的用法

#include <map>

#include <string>

#include <iostream>

Using namespace std;

Int main(){      

 Map<int, string> mapStudent;       

mapStudent.insert(pair<int, string>(1, “student_one”));       

mapStudent.insert(pair<int, string>(2, “student_two”));       

mapStudent.insert(pair<int, string>(3, “student_three”));

//如果你要演示輸出效果,請(qǐng)選擇以下的一種,你看到的效果會(huì)比較好       

//如果要?jiǎng)h除1,用迭代器刪除       

map<int, string>::iterator iter;       iter = mapStudent.find(1);       mapStudent.erase(iter);       

//如果要?jiǎng)h除1,用關(guān)鍵字刪除       

Int n = mapStudent.erase(1);

//如果刪除了會(huì)返回1,否則返回0       

//用迭代器,成片的刪除       

//一下代碼把整個(gè)map清空       

mapStudent.earse(mapStudent.begin(), mapStudent.end());      

 //成片刪除要注意的是,也是STL的特性,刪除區(qū)間是一個(gè)前閉后開(kāi)的集合      

 //自個(gè)加上遍歷代碼,打印輸出吧}

8.       其他一些函數(shù)用法這里有swap,key_comp,value_comp,get_allocator等函數(shù),感覺(jué)到這些函數(shù)在編程用的不是很多,略過(guò)不表,有興趣的話可以自個(gè)研究9.       排序這里要講的是一點(diǎn)比較高深的用法了,排序問(wèn)題,STL中默認(rèn)是采用小于號(hào)來(lái)排序的,以上代碼在排序上是不存在任何問(wèn)題的,因?yàn)樯厦娴年P(guān)鍵字是int 型,它本身支持小于號(hào)運(yùn)算,在一些特殊情況,比如關(guān)鍵字是一個(gè)結(jié)構(gòu)體,涉及到排序就會(huì)出現(xiàn)問(wèn)題,因?yàn)樗鼪](méi)有小于號(hào)操作,insert等函數(shù)在編譯的時(shí)候過(guò) 不去,下面給出兩個(gè)方法解決這個(gè)問(wèn)題第一種:小于號(hào)重載,程序舉例

#include <map>

#include <string>

Using namespace std;

Typedef struct tagStudentInfo{       

Int      nID;      

 String   strName;

}StudentInfo, *PStudentInfo;  //學(xué)生信息

Int main(){    

int nSize;       //用學(xué)生信息映射分?jǐn)?shù)       

map<StudentInfo, int>mapStudent;    

map<StudentInfo, int>::iterator iter;      

StudentInfo studentInfo;       

studentInfo.nID = 1;       

studentInfo.strName = “student_one”;       

mapStudent.insert(pair<StudentInfo, int>(studentInfo, 90));       

studentInfo.nID = 2;      

studentInfo.strName = “student_two”;

mapStudent.insert(pair<StudentInfo, int>(studentInfo, 80));

for (iter=mapStudent.begin(); iter!=mapStudent.end(); iter++)    

cout<<iter->first.nID<<endl<<iter->first.strName<<endl<<iter->second<<endl;}

以上程序是無(wú)法編譯通過(guò)的,只要重載小于號(hào),就OK了,如下:

Typedef struct tagStudentInfo{      

Int      nID;       

String   strName;       

Bool operator < (tagStudentInfo const& _A) const       {              //這個(gè)函數(shù)指定排序策略,按nID排序,如果nID相等的話,按strName排序              

If(nID < _A.nID)  return true;              

If(nID == _A.nID) return strName.compare(_A.strName) < 0;              

Return false;       }}StudentInfo, *PStudentInfo;  //學(xué)生信息第二種:

仿函數(shù)的應(yīng)用,這個(gè)時(shí)候結(jié)構(gòu)體中沒(méi)有直接的小于號(hào)重載,程序說(shuō)明

#include <map>

#include <string>

Using namespace std;

Typedef struct tagStudentInfo{       

Int      nID;       

String   strName;}StudentInfo, *PStudentInfo;  //學(xué)生信息

Classs sort{       

Public:       

Bool operator() (StudentInfo const &_A, StudentInfo const &_B) const       

{              

If(_A.nID < _B.nID) return true;              

If(_A.nID == _B.nID) 

return _A.strName.compare(_B.strName) < 0;              

Return false;       }};

Int main(){       //用學(xué)生信息映射分?jǐn)?shù)       

Map<StudentInfo, int, sort>mapStudent;       

StudentInfo studentInfo;       

studentInfo.nID = 1;       

studentInfo.strName = “student_one”;       

mapStudent.insert(pair<StudentInfo, int>(studentInfo, 90));       

studentInfo.nID = 2;       

studentInfo.strName = “student_two”;

mapStudent.insert(pair<StudentInfo, int>(studentInfo, 80));}

10.   另外由于STL是一個(gè)統(tǒng)一的整體,map的很多用法都和STL中其它的東西結(jié)合在一起,比如在排序上,這里默認(rèn)用的是小于號(hào),即less<>,如果要從大到小排序呢,這里涉及到的東西很多,在此無(wú)法一一加以說(shuō)明。還要說(shuō)明的是,map中由于它內(nèi)部有序,由紅黑樹(shù)保證,因此很多函數(shù)執(zhí)行的時(shí)間復(fù)雜度都是log2N的,如果用map函數(shù)可以實(shí)現(xiàn)的功能,而STL  Algorithm也可以完成該功能,建議用map自帶函數(shù),效率高一些。下面說(shuō)下,map在空間上的特性,否則,估計(jì)你用起來(lái)會(huì)有時(shí)候表現(xiàn)的比較郁悶,由于map的每個(gè)數(shù)據(jù)對(duì)應(yīng)紅黑樹(shù)上的一個(gè)節(jié)點(diǎn),這個(gè)節(jié)點(diǎn)在不保存你的 數(shù)據(jù)時(shí),是占用16個(gè)字節(jié)的,一個(gè)父節(jié)點(diǎn)指針,左右孩子指針,還有一個(gè)枚舉值(標(biāo)示紅黑的,相當(dāng)于平衡二叉樹(shù)中的平衡因子),我想大家應(yīng)該知道,這些地方 很費(fèi)內(nèi)存了吧,不說(shuō)了……

 

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <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>
            亚洲视频综合在线| 夜夜爽99久久国产综合精品女不卡| 在线视频欧美精品| 亚洲精品你懂的| 免费成人黄色av| 老司机精品视频一区二区三区| 久久gogo国模裸体人体| 久久久久**毛片大全| 久久天堂国产精品| 亚洲成人资源网| 一本色道88久久加勒比精品 | 欧美在线关看| 麻豆精品一区二区av白丝在线| 欧美xx视频| 国产精品vvv| 红桃视频亚洲| 亚洲最新视频在线| 久久精品一本久久99精品| 蜜桃av一区二区| 亚洲日本欧美天堂| 欧美影院在线| 欧美日本在线一区| 国产一区二区高清不卡| 亚洲人成网站在线观看播放| 亚洲天堂av在线免费| 久久一区亚洲| 亚洲美女毛片| 久久综合九色综合久99| 国产精品激情偷乱一区二区∴| 国产亚洲精品一区二555| 亚洲精品网站在线播放gif| 久久不射网站| 亚洲最新中文字幕| 六月婷婷久久| 国产一区二区剧情av在线| aⅴ色国产欧美| 女女同性女同一区二区三区91| 国产精品99久久久久久久久久久久| 久久久亚洲一区| 国产精品最新自拍| 一区二区三区四区五区精品视频 | 性色av一区二区三区| 老司机aⅴ在线精品导航| 一本色道久久综合狠狠躁的推荐| 久久久91精品| 国产日韩三区| 亚洲专区一区二区三区| 亚洲精品视频在线看| 久久夜色精品一区| 国产一区在线视频| 欧美一级视频一区二区| 一区二区毛片| 欧美日韩一区二区视频在线| 亚洲精品你懂的| 亚洲大片一区二区三区| 久久久久久69| 国产一区二区中文字幕免费看| 亚洲在线成人| 亚洲午夜久久久久久尤物| 欧美日韩国产限制| 一区二区精品国产| 亚洲日本一区二区| 欧美日韩免费观看一区=区三区 | 久久精品视频免费播放| 亚洲图片欧洲图片av| 欧美日韩一级片在线观看| 日韩亚洲欧美成人一区| 欧美激情偷拍| 欧美激情片在线观看| 亚洲免费精品| 亚洲精品久久久久久下一站| 欧美精品粉嫩高潮一区二区| 9人人澡人人爽人人精品| 9色精品在线| 国产精品一区二区视频 | 亚洲精品日韩精品| 欧美日韩精品一区| 午夜天堂精品久久久久| 欧美亚洲综合网| 韩日精品中文字幕| 免费短视频成人日韩| 欧美高清视频一二三区| 在线综合亚洲欧美在线视频| 中文日韩在线视频| 国产亚洲福利| 亚洲成色www久久网站| 欧美日韩成人一区| 欧美一级精品大片| 免费一级欧美片在线观看| 日韩午夜av| 一区二区三区日韩欧美精品| 国产亚洲欧洲997久久综合| 欧美好骚综合网| 国产精品人人做人人爽人人添| 久久一区激情| 欧美视频在线看| 久久欧美中文字幕| 欧美三区在线视频| 乱人伦精品视频在线观看| 亚洲欧美99| 亚洲精品视频一区| 国产区在线观看成人精品| 免费成人毛片| 国产精品海角社区在线观看| 欧美中文在线观看| 欧美精品国产精品| 久久国产直播| 欧美阿v一级看视频| 午夜视频在线观看一区二区| 欧美二区乱c少妇| 久久se精品一区精品二区| 欧美精品久久久久久| 久久米奇亚洲| 国产精品蜜臀在线观看| 亚洲成人中文| 国产日本欧美一区二区三区在线 | 亚洲人体一区| 国内成人精品视频| 亚洲愉拍自拍另类高清精品| 亚洲日韩第九十九页| 久久国产精品久久国产精品| 亚洲一级片在线看| 欧美精品观看| 欧美激情在线观看| 一区在线影院| 久久精彩免费视频| 久久久91精品国产一区二区三区 | 一本到高清视频免费精品| 亚洲精品国产精品乱码不99 | 久久免费午夜影院| 国产精品一区毛片| 亚洲一区二区日本| 亚洲欧美在线一区二区| 欧美三区在线观看| 99av国产精品欲麻豆| 日韩视频一区二区在线观看| 欧美va亚洲va香蕉在线| 欧美激情女人20p| 曰本成人黄色| 蜜桃av一区二区三区| 亚洲高清资源| 99re8这里有精品热视频免费| 欧美激情视频一区二区三区免费 | 黑人极品videos精品欧美裸| 午夜在线视频一区二区区别| 久久精品女人天堂| 国产一区二区高清视频| 久久综合精品国产一区二区三区| 国产亚洲制服色| 亚洲无人区一区| 免费一级欧美片在线播放| 亚洲精选一区二区| 日韩视频永久免费| 亚洲一区三区视频在线观看| 欧美偷拍一区二区| 在线一区免费观看| 久久国产加勒比精品无码| 国产在线精品二区| 欧美a一区二区| 亚洲视频1区| 老司机免费视频一区二区三区| 亚洲国产精品成人精品| 欧美国产日韩二区| 亚洲小说欧美另类婷婷| 久久精品亚洲一区二区三区浴池| 亚洲电影免费在线| 国产精品久久久久久影视| 久久不射网站| 亚洲另类在线一区| 欧美制服第一页| 亚洲免费观看| 国产一区二区欧美日韩| 久久国产精彩视频| 亚洲精品日韩在线观看| 久久久www| 一区二区三区日韩欧美| 国产在线精品一区二区夜色| 欧美va亚洲va国产综合| 先锋资源久久| 亚洲精品乱码久久久久久| 久久久久久69| 亚洲综合视频1区| 激情六月综合| 国产精品看片你懂得| 欧美暴力喷水在线| 欧美一区二区视频在线观看2020| 91久久精品国产91性色tv| 久久九九电影| 亚洲欧美精品伊人久久| 亚洲美女在线一区| 精品1区2区3区4区| 国产精品外国| 欧美日韩精品中文字幕| 欧美va亚洲va日韩∨a综合色| 久久爱91午夜羞羞| 亚洲男人av电影| 99热在这里有精品免费| 欧美国产一区视频在线观看| 久久激情网站| 性做久久久久久久免费看|