亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? 中國地圖著色dlg.cpp

?? 一般回溯算法
?? CPP
?? 第 1 頁 / 共 2 頁
字號:
// 中國地圖著色Dlg.cpp : implementation file
//

#include "stdafx.h"
#include "中國地圖著色.h"
#include "中國地圖著色Dlg.h"
#include "fstream.h"
#include <time.h>
ofstream fout("result.txt");

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif


/////////////////////////////////////////////////////////////////////////////
// CAboutDlg dialog used for App About

class CAboutDlg : public CDialog
{
public:
	CAboutDlg();

// Dialog Data
	//{{AFX_DATA(CAboutDlg)
	enum { IDD = IDD_ABOUTBOX };
	//}}AFX_DATA

	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CAboutDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	//{{AFX_MSG(CAboutDlg)
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
{
	//{{AFX_DATA_INIT(CAboutDlg)
	//}}AFX_DATA_INIT
}

void CAboutDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CAboutDlg)
	//}}AFX_DATA_MAP
}

BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
	//{{AFX_MSG_MAP(CAboutDlg)
		// No message handlers
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CMyDlg dialog

CMyDlg::CMyDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CMyDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CMyDlg)
	m_size = 0;
	m_MutateProbability = 0.0;
	m_CrossProbability = 0.0;
	m_GENERATION = 0;
	//}}AFX_DATA_INIT
	// Note that LoadIcon does not require a subsequent DestroyIcon in Win32
	m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
}

void CMyDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CMyDlg)
	DDX_Text(pDX, IDC_EDIT2, m_size);
	DDV_MinMaxUInt(pDX, m_size, 0, 1000);
	DDX_Text(pDX, IDC_EDIT4, m_MutateProbability);
	DDV_MinMaxDouble(pDX, m_MutateProbability, 0., 1.);
	DDX_Text(pDX, IDC_EDIT3, m_CrossProbability);
	DDV_MinMaxDouble(pDX, m_CrossProbability, 0., 1.);
	DDX_Text(pDX, IDC_EDIT5, m_GENERATION);
	DDV_MinMaxLong(pDX, m_GENERATION, 0, 100000);
	//}}AFX_DATA_MAP
}

BEGIN_MESSAGE_MAP(CMyDlg, CDialog)
	//{{AFX_MSG_MAP(CMyDlg)
	ON_WM_SYSCOMMAND()
	ON_WM_PAINT()
	ON_WM_QUERYDRAGICON()
	ON_BN_CLICKED(IDC_BUTTON1, OnButton1)
	ON_BN_CLICKED(IDC_BUTTON2, OnButton2)
	ON_BN_CLICKED(IDC_BUTTON3, OnButton3)
	//ON_EN_CHANGE(IDC_EDIT1, OnChangeEdit1)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CMyDlg message handlers
//const CPoint center[32]={(371,168),(173,179),(255,293),(253,325),(322,413),(280,352),(178,324),
//							(94,297),(70,380),(122,362),(171,371),(225,382),(284,418),(289,443),
//							(313,458),(301,469),(341,523),(374,540),(407,551),(268,471),(233,434),
//							(177,438),(144,427),(74,438),(145,467),(209,475),(203,496),(193,526),
//							(179,514),(114,509),(31,403),(88,532)};
char *province[32]={"新疆","西藏","青海","甘肅","內(nèi)蒙古","寧夏","四川","云南","廣西","貴州",
		"重慶","陜西","山西","河北","北京","天津","遼寧","吉林","黑龍江","山東","河南","湖北",
		"湖南","廣東","江西","安徽","江蘇","上海","浙江","福建","海南","臺灣"};
char *colorname[4]={"紅色","綠色","藍(lán)色","粉紅色"};
int center_x[32]={371,173,255,253,322,280,178,94,70,122,171,225,284,289,313,301,341,374,
	407,268,233,177,144,74,145,209,203,193,179,114,31,88};
int center_y[32]={168,179,293,325,413,352,324,297,380,362,371,382,418,443,458,469,523,
	540,551,471,434,438,427,438,467,475,496,526,514,509,403,532};

int color[32]={0};
CString info;
char NeighbourMatrix[32][32]={							//為對稱矩陣,這里只列出一半
							100,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
							0,100,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
							0,0,100,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
							0,0,0,100,1,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
							0,0,0,0,100,1,0,0,0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,
							0,0,0,0,0,100,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
							0,0,0,0,0,0,100,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
							0,0,0,0,0,0,0,100,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
							0,0,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,
							0,0,0,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,
							0,0,0,0,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,
							0,0,0,0,0,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,
							0,0,0,0,0,0,0,0,0,0,0,0,100,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,
							0,0,0,0,0,0,0,0,0,0,0,0,0,100,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,
							0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
							0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
							0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
							0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,
							0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,
							0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,1,0,0,0,0,1,1,0,0,0,0,0,
							0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,1,0,0,0,1,1,0,0,0,0,0,
							0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,1,0,1,1,0,0,0,0,0,0,
							0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,1,1,0,0,0,0,0,0,0,
							0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,1,0,0,0,0,1,1,0,
							0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,1,0,0,1,1,0,0,
							0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,1,0,1,0,0,0,
							0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,1,1,0,0,0,
							0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,1,0,0,0,
							0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,1,0,0,
							0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,
							0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,
							0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100};

BOOL CMyDlg::OnInitDialog()
{
	CDialog::OnInitDialog();

	// Add "About..." menu item to system menu.

	// IDM_ABOUTBOX must be in the system command range.
	ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
	ASSERT(IDM_ABOUTBOX < 0xF000);

	CMenu* pSysMenu = GetSystemMenu(FALSE);
	if (pSysMenu != NULL)
	{
		CString strAboutMenu;
		strAboutMenu.LoadString(IDS_ABOUTBOX);
		if (!strAboutMenu.IsEmpty())
		{
			pSysMenu->AppendMenu(MF_SEPARATOR);
			pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
		}
	}

	// Set the icon for this dialog.  The framework does this automatically
	//  when the application's main window is not a dialog
	SetIcon(m_hIcon, TRUE);			// Set big icon
	SetIcon(m_hIcon, FALSE);		// Set small icon
	
	// TODO: Add extra initialization here
	for(int i=0;i<32;i++)			//填滿鄰居矩陣的另一半
		for(int j=i;j<32;j++)
			if(NeighbourMatrix[i][j]==1)
				NeighbourMatrix[j][i]=1;

	m_size=20;
	m_CrossProbability=0.8;
	m_MutateProbability=0.5;
	m_GENERATION=20000;
	UpdateData(false);
	return TRUE;  // return TRUE  unless you set the focus to a control
}

void CMyDlg::OnSysCommand(UINT nID, LPARAM lParam)
{
	if ((nID & 0xFFF0) == IDM_ABOUTBOX)
	{
		CAboutDlg dlgAbout;
		dlgAbout.DoModal();
	}
	else
	{
		CDialog::OnSysCommand(nID, lParam);
	}
}

// If you add a minimize button to your dialog, you will need the code below
//  to draw the icon.  For MFC applications using the document/view model,
//  this is automatically done for you by the framework.

void CMyDlg::OnPaint() 
{
	if (IsIconic())
	{
		CPaintDC dc(this); // device context for painting

		SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);

		// Center icon in client rectangle
		int cxIcon = GetSystemMetrics(SM_CXICON);
		int cyIcon = GetSystemMetrics(SM_CYICON);
		CRect rect;
		GetClientRect(&rect);
		int x = (rect.Width() - cxIcon + 1) / 2;
		int y = (rect.Height() - cyIcon + 1) / 2;

		// Draw the icon
		dc.DrawIcon(x, y, m_hIcon);
	}
	else
	{
		CDialog::OnPaint();
	}
}

// The system calls this to obtain the cursor to display while the user drags
//  the minimized window.
HCURSOR CMyDlg::OnQueryDragIcon()
{
	return (HCURSOR) m_hIcon;
}

void CMyDlg::Open() 
{
	BYTE * pBuffer;

	CFile bmp("地圖.bmp",CFile::modeRead);
	bmp.Seek(54 ,CFile::begin);
	pBuffer=new BYTE[624*512*3];
	bmp.Read(pBuffer,624*512*3);
	bmp.Close();

	CClientDC dc(this);
	int r,g,b;
	int i,j;
	for(i=0;i<512;i++)
	{
		for(j=0;j<624;j++)
		{
			b=*pBuffer;
		    g=*(pBuffer+1);
	    	r=*(pBuffer+2);
			pBuffer=pBuffer+3;

			if((r+g+b)/3>50)
				bmpTwo[i][j]=255;
			else
				bmpTwo[i][j]=0;

			dc.SetPixel(j+11,10+512-i,RGB(bmpTwo[i][j],bmpTwo[i][j],bmpTwo[i][j]));
			bmpTwo[i][j]=255-bmpTwo[i][j];
		}
	}
}

void CMyDlg::Thining()
{
	 int i=0,j;
	 int flag = 1;
	 BYTE **bmpThin;
	 bmpThin = new BYTE *[512];
	 for(i=0;i<512;i++)
		 bmpThin[i] = new BYTE[624];

     for(i=0;i<512;i++)
		 for(j=0;j<624;j++)//初始化
			 bmpThin[i][j]= 0;

     while(flag==1) //flag=0時(shí)迭代結(jié)束
	 {
		flag=0;
		for( i=2;i<512-2;i++)
		{
			for(j=2;j<624-2;j++)
			{				
				if(bmpTwo[i-1][j-1]==0xff	//模板a
                && bmpTwo[i-1][j+1]==0
                && bmpTwo[i][j-1]==0xff
                && bmpTwo[i][j-0]==0
                && bmpTwo[i][j+1]==0
                && bmpTwo[i][j+2]==0
                && bmpTwo[i+1][j-1]==0xff
                && bmpTwo[i+1][j+1]==0)
				{
					bmpThin[i][j]=0xff;
                    flag=1;
                    continue;
				}
                        
                if(bmpTwo[i-1][j-0]==0		//模板b
                && bmpTwo[i-1][j+1]==0
                && bmpTwo[i][j-1]==0xff
                && bmpTwo[i][j-0]==0
                && bmpTwo[i][j+1]==0
                && bmpTwo[i][j+2]==0
                && bmpTwo[i+1][j-1]==0xff
                && bmpTwo[i+1][j-0]==0xff)
				{
					bmpThin[i][j]=0xff;
                    flag=1;
                    continue;
				}
                        
                if(bmpTwo[i-1][j-1]==0xff	//模板c
                && bmpTwo[i-1][j-0]==0xff
                && bmpTwo[i][j-1]==0xff
                && bmpTwo[i][j-0]==0
                && bmpTwo[i][j+1]==0
                && bmpTwo[i][j+2]==0
                && bmpTwo[i+1][j-0]==0
                && bmpTwo[i+1][j+1]==0)
				{
					bmpThin[i][j]=0xff;
                    flag=1;
                    continue;
				}
                        
                if(bmpTwo[i-1][j-1]==0xff	//模板d
                && bmpTwo[i-1][j-0]==0xff
                && bmpTwo[i-1][j+1]==0xff
                && bmpTwo[i][j-0]==0
                && bmpTwo[i+1][j-1]==0
                && bmpTwo[i+1][j-0]==0
                && bmpTwo[i+1][j+1]==0)
				{
					bmpThin[i][j]=0xff;
                    flag=1;
                    continue;
				}
                        
                if(bmpTwo[i-1][j-1]==0		//模板e(cuò)
				&& bmpTwo[i-1][j+1]==0xff
				&& bmpTwo[i][j-1]==0
				&& bmpTwo[i][j-0]==0
				&& bmpTwo[i][j+1]==0xff
				&& bmpTwo[i+1][j-1]==0
				&& bmpTwo[i+1][j+1]==0xff)
				{
					bmpThin[i][j]=0xff;
                    flag=1;
                    continue;
				}
                        
                if(bmpTwo[i-1][j-0]==0		//模板f
                && bmpTwo[i][j-1]==0
                && bmpTwo[i][j-0]==0
                && bmpTwo[i][j+1]==0xff
                && bmpTwo[i+1][j-0]==0xff
                && bmpTwo[i+1][j+1]==0xff)
				{
					bmpThin[i][j]=0xff;
                    flag=1;
                    continue;
				}
                        
                if(bmpTwo[i-1][j-0]==0xff	//模板g
                && bmpTwo[i-1][j+1]==0xff
                && bmpTwo[i][j-1]==0
                && bmpTwo[i][j-0]==0
                && bmpTwo[i][j+1]==0xff
                && bmpTwo[i+1][j-0]==0)
				{
					bmpThin[i][j]=0xff;
                    flag=1;
                    continue;
				}
                        
                if(bmpTwo[i-2][j-0]==0		//模板h
                && bmpTwo[i-1][j-1]==0
                && bmpTwo[i-1][j-0]==0
                && bmpTwo[i-1][j+1]==0
                && bmpTwo[i][j-0]==0
                && bmpTwo[i+1][j-1]==0xff
                && bmpTwo[i+1][j-0]==0xff
                && bmpTwo[i+1][j+1]==0xff)
				{
					bmpThin[i][j]=0xff;
					flag=1;
					continue;
				}
			}
		}
        for(i=0;i<512;i++)
		{
			for(j=0;j<624;j++)
                if(bmpThin[i][j]==0xff)
					bmpTwo[i][j]=0xff;
        }
	}

    for( i=2;i<512-2;i++)		 //第二次串行細(xì)化
    {
        for(j=2;j<624-2;j++)
        {
            //縮小后的模板a
            if(bmpTwo[i-1][j-1]==0xff
            && bmpTwo[i-1][j+1]==0
            && bmpTwo[i][j-1]==0xff
            && bmpTwo[i][j-0]==0
            && bmpTwo[i][j+1]==0
            && bmpTwo[i+1][j-1]==0xff
            && bmpTwo[i+1][j+1]==0)
            {
                    bmpTwo[i][j]=0xff;
                    flag=1;
                    continue;
            }
            //縮小后的模板h
            if(bmpTwo[i-1][j-1]==0
            && bmpTwo[i-1][j-0]==0
            && bmpTwo[i-1][j+1]==0
            && bmpTwo[i][j-0]==0
            && bmpTwo[i+1][j-1]==0xff
            && bmpTwo[i+1][j-0]==0xff
            && bmpTwo[i+1][j+1]==0xff)
            {
                    bmpTwo[i][+j]=0xff;
                    flag=1;
                    continue;
            }
		}
    }		
	delete []bmpThin;
	CClientDC dc(this);

//	for(i=0;i<512;i++)
	for(i=511;i>=0;i--)
	{
		for(j=0;j<624;j++)
		{
			if(bmpTwo[i][j]==0xff)
				dc.SetPixel(j+11,512+10-i,RGB(255,255,255));
			else
				dc.SetPixel(j+11,512+10-i,RGB(0,0,0));
		}
	}
}

void CMyDlg::RegionGrow(BYTE *bwImage,int l)
{

	static int nDx[]={-1,0,1,0};
	static int nDy[]={ 0,1,0,-1};

	// 定義堆棧的起點(diǎn)和終點(diǎn)
	// 當(dāng)nStart=nEnd, 表示堆棧中只有一個(gè)點(diǎn)
	long int nStart=0 ;
	long int nEnd=0   ;
//	p_bw=new BYTE(512*624);


	int *GrowRegionx = new int [512*624];
	int *GrowRegiony = new int [512*624];

	// 當(dāng)前正在處理的象素
	int nCurrx ;
	int nCurry ;

	// 循環(huán)控制變量
	int k ;

	// 圖象的橫縱坐標(biāo),用來對當(dāng)前象素的4鄰域進(jìn)行遍歷
	int xx;
	int yy;

	CClientDC dc(this);

	memset(p_bw,0,sizeof(BYTE)*319488);	
	nStart=0;
	nEnd=0;
	Sleep(500);
	// 把種子點(diǎn)的坐標(biāo)壓入棧
	GrowRegionx[nEnd] = center_y[l];
	GrowRegiony[nEnd] = center_x[l];
	while (nStart<=nEnd)
	{
		// 當(dāng)前種子點(diǎn)的坐標(biāo)
		nCurrx = GrowRegionx[nStart];
		nCurry = GrowRegiony[nStart];

		// 對當(dāng)前點(diǎn)的4鄰域進(jìn)行遍歷
		for (k=0; k<4; k++)	
		{	
			// 4鄰域象素的坐標(biāo)
			xx = nCurrx+nDx[k];
			yy = nCurry+nDy[k];
			
			// 判斷象素(xx,yy) 是否在圖像內(nèi)部
			if (	(xx < 624) && (xx>=0) && (yy<512) && (yy>=0) 
					 &&p_bw[yy*624+xx]==0
					 &&bwImage[yy*624+xx] ==255)
			{ 
				// 堆棧的尾部指針后移一位
				 nEnd++;

				// 象素(xx,yy) 壓入棧
				GrowRegionx[nEnd] = xx;		

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
最近中文字幕一区二区三区| 国产精品99久久久久久有的能看 | 国产亚洲精品7777| 日韩一区二区三区在线观看| 欧美精品在线观看播放| 欧美精选一区二区| 欧美老肥妇做.爰bbww| 欧美日韩久久一区二区| 91精品国产综合久久久久久漫画 | 国产馆精品极品| 国产高清无密码一区二区三区| 国产成人在线观看免费网站| 成人免费av网站| 色哟哟国产精品| 欧美日韩卡一卡二| 日韩西西人体444www| 精品久久一二三区| 国产丝袜在线精品| 亚洲免费观看在线观看| 亚洲永久精品大片| 青青草国产成人av片免费| 久久国产福利国产秒拍| 春色校园综合激情亚洲| 一本大道综合伊人精品热热| 欧美日精品一区视频| 宅男在线国产精品| 精品电影一区二区三区 | 亚洲第一精品在线| 狂野欧美性猛交blacked| 国产乱一区二区| 91免费精品国自产拍在线不卡| 欧美在线观看禁18| 日韩欧美一区二区在线视频| 国产日韩成人精品| 亚洲午夜久久久久久久久电影网| 蜜桃精品在线观看| 成人高清av在线| 欧美三级日韩三级| 久久久精品综合| 亚洲自拍偷拍九九九| 激情文学综合丁香| 91免费视频观看| 精品免费日韩av| 亚洲色图清纯唯美| 日本va欧美va精品发布| 99免费精品在线| 欧美三级日韩三级国产三级| 久久久99免费| 亚洲第一电影网| 国产91露脸合集magnet| 欧美日韩综合色| 26uuu亚洲综合色| 亚洲国产人成综合网站| 国产黑丝在线一区二区三区| 欧美日韩午夜影院| 亚洲国产成人午夜在线一区| 午夜精品久久久久久久久| 高清不卡在线观看| 欧美精品一二三| 亚洲欧洲99久久| 精品在线观看视频| 欧美性猛片xxxx免费看久爱| 国产日韩欧美综合在线| 日本怡春院一区二区| 91香蕉视频污在线| 久久在线观看免费| 亚洲成人av电影在线| av亚洲精华国产精华精华| 精品乱人伦小说| 天堂一区二区在线| 91在线视频网址| 久久久精品综合| 麻豆精品在线观看| 欧美午夜精品久久久久久孕妇| 国产精品久久久久久久浪潮网站 | 五月婷婷另类国产| 色综合天天综合在线视频| 久久蜜桃av一区二区天堂| 日本欧美一区二区三区| 色综合天天性综合| 欧美韩国日本一区| 国产精品亚洲午夜一区二区三区| 日韩欧美中文字幕公布| 日日噜噜夜夜狠狠视频欧美人| 色综合夜色一区| 中文字幕一区在线观看| 丁香网亚洲国际| 久久日韩粉嫩一区二区三区| 久久99热这里只有精品| 在线不卡免费av| 午夜亚洲国产au精品一区二区| 日本丶国产丶欧美色综合| 综合分类小说区另类春色亚洲小说欧美| 激情综合色综合久久| 日韩亚洲国产中文字幕欧美| 视频在线观看91| 在线播放国产精品二区一二区四区| 亚洲精品视频在线观看网站| 波多野结衣91| 最新国产精品久久精品| 91女神在线视频| 亚洲免费在线播放| 色婷婷av久久久久久久| 一区二区三区日韩在线观看| 色综合天天综合给合国产| 亚洲另类在线视频| 91年精品国产| 一区二区三区中文字幕电影| 色综合久久六月婷婷中文字幕| 亚洲日本乱码在线观看| 色欧美日韩亚洲| 亚洲图片有声小说| 在线综合亚洲欧美在线视频| 蜜桃精品视频在线| 久久夜色精品一区| 成人免费高清在线| 一区精品在线播放| 色丁香久综合在线久综合在线观看| 亚洲猫色日本管| 欧美日韩亚州综合| 老司机一区二区| 久久久久久久久99精品| 成人成人成人在线视频| 亚洲免费视频成人| 91麻豆精品国产| 狠狠色狠狠色综合系列| 欧美韩国日本一区| 色狠狠综合天天综合综合| 午夜电影久久久| 精品国产凹凸成av人导航| 成人免费视频视频在线观看免费| 亚洲欧美日韩国产中文在线| 欧美精品粉嫩高潮一区二区| 紧缚奴在线一区二区三区| 亚洲国产精品精华液ab| 欧美主播一区二区三区美女| 日本人妖一区二区| 国产日韩欧美一区二区三区乱码| av在线不卡网| 日本系列欧美系列| 中文av字幕一区| 欧美午夜视频网站| 国产一区美女在线| 亚洲人妖av一区二区| 日韩午夜电影在线观看| 国产不卡视频一区二区三区| 一区二区三区在线观看动漫| 日韩欧美一区二区久久婷婷| 成人爱爱电影网址| 天天爽夜夜爽夜夜爽精品视频| 国产亚洲欧洲997久久综合| 91麻豆精品一区二区三区| 日韩电影一区二区三区四区| 国产欧美一区二区在线观看| 欧美日韩视频专区在线播放| 国产精品亚洲一区二区三区在线| 亚洲电影一级片| 中文字幕第一页久久| 欧美精品久久一区| av资源站一区| 久久99精品久久只有精品| 亚洲乱码中文字幕综合| 久久综合资源网| 欧美在线观看视频一区二区 | 欧美少妇xxx| 成人一级黄色片| 蜜臀久久99精品久久久久宅男 | 成人免费看片app下载| 日韩黄色小视频| 国产精品免费av| 日韩欧美另类在线| 欧美日韩一区在线| 成人精品国产一区二区4080| 日本成人在线电影网| 亚洲精品久久久蜜桃| 国产亚洲精品精华液| 欧美电影免费观看完整版| 欧美性xxxxxxxx| 91色porny| 成a人片亚洲日本久久| 国内外成人在线| 天天影视色香欲综合网老头| 亚洲人精品午夜| 国产精品视频第一区| 久久伊人中文字幕| 欧美不卡激情三级在线观看| 欧美日韩一区中文字幕| 91国产免费看| av成人免费在线观看| 国产成人av电影在线观看| 蜜芽一区二区三区| 亚洲电影第三页| 亚洲国产cao| 一区二区久久久久久| 亚洲视频你懂的| 国产精品免费丝袜| 国产精品久久久久一区| 中文字幕不卡的av| 中文字幕av一区二区三区| 国产女主播视频一区二区|