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

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

?? 中國(guó)地圖著色dlg.cpp

?? 一般回溯算法
?? CPP
?? 第 1 頁(yè) / 共 2 頁(yè)
字號(hào):
// 中國(guó)地圖著色Dlg.cpp : implementation file
//

#include "stdafx.h"
#include "中國(guó)地圖著色.h"
#include "中國(guó)地圖著色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)蒙古","寧夏","四川","云南","廣西","貴州",
		"重慶","陜西","山西","河北","北京","天津","遼寧","吉林","黑龍江","山東","河南","湖北",
		"湖南","廣東","江西","安徽","江蘇","上海","浙江","福建","海南","臺(tá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]={							//為對(duì)稱矩陣,這里只列出一半
							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),用來(lái)對(duì)當(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];

		// 對(duì)當(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
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精华液一区二区三区| 国产成人精品一区二区三区网站观看| 欧美一级片免费看| 成人a免费在线看| 日韩制服丝袜av| 亚洲欧美激情一区二区| 日韩免费看的电影| 色综合久久88色综合天天免费| 奇米一区二区三区| 一区二区三区自拍| 欧美高清在线视频| 精品免费国产一区二区三区四区| 91精彩视频在线| 懂色av一区二区三区免费看| 美国毛片一区二区| 偷窥少妇高潮呻吟av久久免费| 一区在线中文字幕| 国产日产欧美精品一区二区三区| 欧美一区在线视频| 欧美日韩精品免费观看视频| 99国产精品国产精品毛片| 国产麻豆视频一区| 激情丁香综合五月| 捆绑调教一区二区三区| 午夜免费欧美电影| 一区二区成人在线视频| 国产精品电影一区二区| 欧美韩国日本不卡| 国产欧美日韩在线观看| 欧美tickling挠脚心丨vk| 91精品国产品国语在线不卡| 精品视频在线免费| 欧美少妇bbb| 欧美三区免费完整视频在线观看| 一本久久a久久免费精品不卡| 不卡一区二区在线| eeuss鲁片一区二区三区在线观看 eeuss鲁片一区二区三区在线看 | 国产一区二区三区四区五区美女 | 91美女片黄在线观看| 国产不卡免费视频| 国产一区二区免费在线| av激情综合网| 色综合色综合色综合色综合色综合 | 成人国产在线观看| 成人毛片视频在线观看| 国产成人久久精品77777最新版本| 美女一区二区久久| 美女脱光内衣内裤视频久久影院| 天堂精品中文字幕在线| 青青草国产精品97视觉盛宴| 免费欧美日韩国产三级电影| 麻豆成人在线观看| 久久爱另类一区二区小说| 久久99精品久久久久| 蜜桃一区二区三区在线| 国产在线不卡一卡二卡三卡四卡| 国产综合久久久久久鬼色| 国产伦精品一区二区三区免费迷| 国产一区二区三区免费看| 国产精品1区2区| 99久久精品国产导航| 欧洲另类一二三四区| 欧美美女黄视频| 精品国产亚洲在线| 国产精品乱人伦| 自拍偷自拍亚洲精品播放| 亚洲韩国精品一区| 青青草国产精品亚洲专区无| 久久国产精品免费| 国产在线视视频有精品| 99这里都是精品| 欧美天堂亚洲电影院在线播放| 欧美成人一区二区三区在线观看| 久久精品亚洲国产奇米99| 国产精品久久久爽爽爽麻豆色哟哟| 亚洲欧洲精品天堂一级| 亚洲二区在线视频| 国产精品一区一区三区| 91在线国产观看| 欧美人伦禁忌dvd放荡欲情| 久久精品一区蜜桃臀影院| 亚洲精品免费在线| 美腿丝袜在线亚洲一区| 粉嫩av一区二区三区粉嫩| 欧美日韩国产综合草草| 久久精品亚洲乱码伦伦中文| 一区二区在线观看av| 国内不卡的二区三区中文字幕| 色综合久久久久久久久久久| 日韩一区二区在线看片| 中文成人综合网| 秋霞午夜av一区二区三区| 国产福利精品导航| 欧美肥胖老妇做爰| 久久久精品国产99久久精品芒果| 另类小说图片综合网| 成人app下载| 91麻豆精品国产91久久久资源速度 | 亚洲精品免费在线观看| 激情亚洲综合在线| 欧洲色大大久久| 国产精品青草久久| 激情综合网av| 欧美一区日韩一区| 一区二区欧美在线观看| 国产精品亚洲第一区在线暖暖韩国 | 粉嫩蜜臀av国产精品网站| 精品视频一区三区九区| 国产精品国产三级国产普通话蜜臀| 久久成人久久鬼色| 91麻豆精品国产91久久久使用方法 | 久久久久久久综合色一本| 亚洲一区二区三区四区中文字幕| 国产白丝精品91爽爽久久| 日韩免费电影网站| 天天影视网天天综合色在线播放| 94-欧美-setu| 国产日韩欧美一区二区三区乱码 | 国产成人综合亚洲网站| 日韩一区二区精品| 亚洲午夜精品在线| 97久久人人超碰| 国产精品婷婷午夜在线观看| 国产一区二区三区久久悠悠色av| 91精品国产色综合久久不卡电影| 一区二区三区日本| 91啦中文在线观看| 亚洲免费在线视频| 97se亚洲国产综合在线| 欧美激情综合五月色丁香小说| 国产美女视频一区| 精品国产3级a| 国产精品一级二级三级| 久久精品亚洲精品国产欧美kt∨| 激情成人综合网| 久久婷婷久久一区二区三区| 美女在线一区二区| 亚洲精品一线二线三线| 精品亚洲国内自在自线福利| 日韩免费观看高清完整版在线观看| 日韩精品乱码免费| 欧美一二三区在线观看| 日产国产欧美视频一区精品| 欧美精品自拍偷拍| 日精品一区二区三区| 欧美精品免费视频| 美女性感视频久久| 久久免费看少妇高潮| 国产成人午夜电影网| 中文字幕av一区二区三区| 99精品欧美一区二区蜜桃免费| 亚洲欧美一区二区视频| 在线观看视频一区| 婷婷激情综合网| 日韩精品一区二区三区视频播放| 国内精品自线一区二区三区视频| 中文字幕乱码久久午夜不卡 | 国产精品久久久久9999吃药| 91蜜桃视频在线| 亚洲成在人线免费| 欧美xxxx在线观看| 国产丶欧美丶日本不卡视频| 最新高清无码专区| 欧美日韩一区二区不卡| 蜜臀av亚洲一区中文字幕| 五月天网站亚洲| 日韩精品一区二区三区swag| 成+人+亚洲+综合天堂| 亚洲一级片在线观看| 日韩免费电影网站| 99久久精品免费观看| 天天色图综合网| 欧美成人精品3d动漫h| 国产jizzjizz一区二区| 亚洲资源中文字幕| 精品国产凹凸成av人网站| 91色在线porny| 三级影片在线观看欧美日韩一区二区| 久久夜色精品国产欧美乱极品| 91丨九色丨尤物| 久久狠狠亚洲综合| 国产精品不卡视频| 欧美一级午夜免费电影| 成人97人人超碰人人99| 免费在线一区观看| 国产精品美女久久久久av爽李琼 | 亚洲国产精品99久久久久久久久| 欧美亚洲精品一区| 国产一区美女在线| 亚洲图片一区二区| 欧美激情综合在线| 日韩欧美在线123| 色欲综合视频天天天| 国产成人免费在线| 日韩经典一区二区| 自拍偷拍国产亚洲| 国产女主播在线一区二区| 欧美猛男gaygay网站| 99久久综合狠狠综合久久| 精品一区二区国语对白|