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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? vector.h

?? 矩陣運算的模板類
?? H
?? 第 1 頁 / 共 3 頁
字號:
// -*- c++ -*-
///////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2001 Oh-Wook Kwon, all rights reserved. ohwook@yahoo.com
//
//                          Easy Matrix Template Library
// 
// This Easy Matrix Template Library is provided "as is" without any express 
// or implied warranty of any kind with respect to this software. 
// In particular the authors shall not be liable for any direct, 
// indirect, special, incidental or consequential damages arising 
// in any way from use of the software.
// 
// Everyone is granted permission to copy, modify and redistribute this
// Easy Matrix Template Library, provided:
//  1.  All copies contain this copyright notice.
//  2.  All modified copies shall carry a notice stating who
//      made the last modification and the date of such modification.
//  3.  No charge is made for this software or works derived from it.  
//      This clause shall not be construed as constraining other software
//      distributed on the same medium as this software, nor is a
//      distribution fee considered a charge.
//
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
// Filename: Vector.h// Implementation:
//   Template class for vector algebra
//   Vector index starts from 1.
//   Access by A(i) rather than A[i].
// Note: 
//   Access by A(i) loses nothing but may gain something at least in some cases.
//   All return values are of the double type to prevent overflow or underflow.
// If you find any bugs, please send me an e-mail.
///////////////////////////////////////////////////////////////////////////////
#ifndef _VECTOR_H_#define _VECTOR_H_#include "./MatrixConfig.h"
#include "./MathUtil.h"
#include "./Random.h"

typedef complex<float> FComplex;
typedef complex<double> DComplex;
template <typename T> class Vector;template <typename T> class Matrix;enum VectorType { COL_VECTOR, ROW_VECTOR };


// Template functions with default arguments
#ifdef __GNUC__
template <typename T> T Max(const Vector<T>& A,int* idx=0);
template <typename T> T Min(const Vector<T>& A,int* idx=0);
template <typename T> Matrix<T> ToMatrix(const Vector<T>& A, int m=1);
template <typename T> double Norm(const Vector<T>& A, int p=2);
#elsetemplate <typename T> T Max(const Vector<T>& A,int* idx);
template <typename T> T Min(const Vector<T>& A,int* idx);
template <typename T> Matrix<T> ToMatrix(const Vector<T>& A, int m);
template <typename T> double Norm(const Vector<T>& A, int p);
#endif
// friend template functions
template <typename T> Vector<T> mtl_plus(const Vector<T>& A, const Vector<T>& B);
template <typename T> Vector<T> mtl_minus(const Vector<T>& A, const Vector<T>& B);
template <typename T> Vector<T> mtl_plus(const Vector<T>& A, const double b);
template <typename T> Vector<T> mtl_minus(const Vector<T>& A, const double b);
template <typename T> Vector<T> mtl_times(const Vector<T>& A, const double b);
template <typename T> Vector<T> mtl_divide(const Vector<T>& A, const double b);
template <typename T> Vector<T> mtl_plus(const double b, const Vector<T>& A);
template <typename T> Vector<T> mtl_minus(const double b, const Vector<T>& A);
template <typename T> Vector<T> mtl_times(const double b, const Vector<T>& A);
template <typename T> Vector<T> mtl_divide(const double b, const Vector<T>& A);
template <typename T> Vector<T> mtl_times(const Vector<T>& A, const Vector<T>& B);
template <typename T> Vector<T> mtl_divide(const Vector<T>& A, const Vector<T>& B);
template <typename T> ostream& mtl_ostream(ostream& s, const Vector<T>& A);template <typename T> istream& mtl_istream(istream& s, Vector<T>& A);

#ifndef DISABLE_COMPLEX
template <typename T> Vector<T> mtl_plus(const Vector<T>& A, const complex<T> b);
template <typename T> Vector<T> mtl_minus(const Vector<T>& A, const complex<T> b);
template <typename T> Vector<T> mtl_times(const Vector<T>& A, const complex<T> b);
template <typename T> Vector<T> mtl_divide(const Vector<T>& A, const complex<T> b);
template <typename T> Vector<T> mtl_plus(const complex<T> b, const Vector<T>& A);
template <typename T> Vector<T> mtl_minus(const complex<T> b, const Vector<T>& A);
template <typename T> Vector<T> mtl_times(const complex<T> b, const Vector<T>& A);
template <typename T> Vector<T> mtl_divide(const complex<T> b, const Vector<T>& A);
#endif
template <typename T> int Length(const Vector<T>& A);template <typename T> T Sum(const Vector<T>& A);
template <typename T> Vector<T> Transpose(const Vector<T>& A);
template <typename T> Vector<T> ArrayTranspose(const Vector<T>& A);template <typename T> Matrix<T> OuterProd(const Vector<T>& A, const Vector<T>& B);template <typename T> T InnerProd(const Vector<T>& A, const Vector<T>& B);
template <typename T> Vector<T> Cross(const Vector<T>& A, const Vector<T>& B);template <typename T> T Dot(const Vector<T>& A, const Vector<T>& B);
template <typename T> Vector<T> ArrayMultiply(const Vector<T>& A, const Vector<T>& B);template <typename T> Vector<T> ArrayDivide(const Vector<T>& A, const Vector<T>& B);template <typename T> Vector<int> Int(const Vector<T>& A);
template <typename T> Vector<float> Float(const Vector<T>& A);
template <typename T> Vector<double> Double(const Vector<T>& A);
template <typename T> Vector<T> Abs(const Vector<T>& A);
template <typename T> Vector<T> Sign(const Vector<T>& A);
template <typename T> Vector<T> Pow(const Vector<T>& A, double b);
template <typename T> Vector<T> Pow(const Vector<T>& A, int b);
template <typename T> Vector<T> Exp(const Vector<T>& A);template <typename T> Vector<T> Log(const Vector<T>& A);template <typename T> Vector<T> Digamma(const Vector<T>& A);template <typename T> Vector<T> Gammaln(const Vector<T>& A);template <typename T> Matrix<T> Diag(const Vector<T> A);template <typename T> T Mean(const Vector<T>& A);
template <typename T> Vector<T> Cumsum(const Vector<T>& A);
template <typename T> Vector<T> Cumprod(const Vector<T>& A);template <typename T> string Num2str(const Vector<T>& A);template <typename T> int Sort(const Vector<T>& A, Vector<T>& v, Vector<int>& orderA, int order);
template <typename T> Vector<T> FFT(const Vector<T>& A,int N);
template <typename T> Vector<T> IFFT(const Vector<T>& A,int N);
template <typename T> Vector<T> Merge(const Vector<T>& A,const Vector<T>& B);


// ------------------------------------------------------------------------// Vector declaration// ------------------------------------------------------------------------template <typename T>class Vector {private:	// I chose "vector" in STL as a storage because the "vector" preserves
	// data after resizing. I waste one element but it made implementation easy.	int n;
	VectorType type;
	vector<T> vec;
public:
	friend class Matrix<T>;	Vector(int n_=0, VectorType type_=(VectorType)COL_VECTOR, const T& v_=T());
	Vector(int n_, VectorType type_, const char* v_);
	Vector(const Vector<T>& v_, int n_, VectorType type_);	//Vector(const Vector<T>& A);	virtual ~Vector();

	/////////////////////////////
	// member operator overloading
	/////////////////////////////	T&			operator()(int i);
	const T&	operator()(int i) const;
	Vector<T>	operator+();	Vector<T>	operator-();	Vector<T>& operator+=(const Vector<T>& B);	Vector<T>& operator-=(const Vector<T>& B);	Vector<T>& operator+=(const double b);	Vector<T>& operator-=(const double b);	Vector<T>& operator*=(const double b);	Vector<T>& operator/=(const double b);
#ifndef DISABLE_COMPLEX	Vector<T>& operator+=(const complex<T> b);
	Vector<T>& operator-=(const complex<T> b);
	Vector<T>& operator*=(const complex<T> b);
	Vector<T>& operator/=(const complex<T> b);
#endif
	//Vector<T>& operator=(const Vector<T>& A);	Vector<T>& operator=(const T& a);
#ifdef ALLOW_ACCESS_BY_BRACKET
	// The [] operator does not check if the arguments are in the valid range.
	// I recommend to use it only in implementation of the Vector class.
	T&			operator[](int i);
	const T&	operator[](int i) const;
#endif

	/////////////////////////////
	// friend operator overloading
	/////////////////////////////	// GCC-2.95-2 did not allow friend operator overloading definition outside class declaration.
	friend Vector<T> operator+(const Vector<T>& A, const Vector<T>& B) {		return mtl_plus(A,B);	}	friend Vector<T> operator-(const Vector<T>& A, const Vector<T>& B) {		return mtl_minus(A,B);	}	friend Vector<T> operator+(const Vector<T>& A, const double b) {		return mtl_plus(A,b);	}	friend Vector<T> operator-(const Vector<T>& A, const double b) {		return mtl_minus(A,b);	}	friend Vector<T> operator*(const Vector<T>& A, const double b) {		return mtl_times(A,b);	}	friend Vector<T> operator/(const Vector<T>& A, const double b) {		return mtl_divide(A,b);	}	friend Vector<T> operator+(const double b, const Vector<T>& A) {		return mtl_plus(b,A);	}	friend Vector<T> operator-(const double b, const Vector<T>& A) {		return mtl_minus(b,A);	}	friend Vector<T> operator*(const double b, const Vector<T>& A) {		return mtl_times(b,A);	}	friend Vector<T> operator/(const double b, const Vector<T>& A) {		return mtl_divide(b,A);	}	friend ostream& operator<<(ostream& s, const Vector<T>& A) {		return mtl_ostream(s,A);	}
	friend ostream& operator<<(ostream& s, Vector<T>& A) {
		return mtl_ostream(s,A);
	}	friend istream& operator>>(istream& s, Vector<T>& A) {		return mtl_istream(s,A);	}

#ifndef DISABLE_COMPLEX
	friend Vector<T> operator+(const Vector<T>& A, const complex<T> b) {
		return mtl_plus(A,b);
	}
	friend Vector<T> operator-(const Vector<T>& A, const complex<T> b) {
		return mtl_minus(A,b);
	}
	friend Vector<T> operator*(const Vector<T>& A, const complex<T> b) {
		return mtl_times(A,b);
	}
	friend Vector<T> operator/(const Vector<T>& A, const complex<T> b) {
		return mtl_divide(A,b);
	}
	friend Vector<T> operator+(const complex<T> b, const Vector<T>& A) {
		return mtl_plus(b,A);
	}
	friend Vector<T> operator-(const complex<T> b, const Vector<T>& A) {
		return mtl_minus(b,A);
	}
	friend Vector<T> operator*(const complex<T> b, const Vector<T>& A) {
		return mtl_times(b,A);
	}
	friend Vector<T> operator/(const complex<T> b, const Vector<T>& A) {
		return mtl_divide(b,A);
	}
#endif
	/////////////////////////////
	// friend functions
	/////////////////////////////
#ifdef __GNUC__
	friend Vector<T> mtl_plus<T>(const Vector<T>& A, const Vector<T>& B);
	friend Vector<T> mtl_minus<T>(const Vector<T>& A, const Vector<T>& B);
	friend Vector<T> mtl_plus<T>(const Vector<T>& A, const double b);
	friend Vector<T> mtl_minus<T>(const Vector<T>& A, const double b);
	friend Vector<T> mtl_times<T>(const Vector<T>& A, const double b);
	friend Vector<T> mtl_divide<T>(const Vector<T>& A, const double b);
	friend Vector<T> mtl_plus<T>(const double b, const Vector<T>& A);
	friend Vector<T> mtl_minus<T>(const double b, const Vector<T>& A);
	friend Vector<T> mtl_times<T>(const double b, const Vector<T>& A);
	friend Vector<T> mtl_divide<T>(const double b, const Vector<T>& A);
	friend Vector<T> mtl_times<T>(const Vector<T>& A, const Vector<T>& B);
	friend Vector<T> mtl_divide<T>(const Vector<T>& A, const Vector<T>& B);
	friend ostream& mtl_ostream<T>(ostream& s, const Vector<T>& A);	friend istream& mtl_istream<T>(istream& s, Vector<T>& A);

#ifndef DISABLE_COMPLEX
	friend Vector<T> mtl_plus<T>(const Vector<T>& A, const complex<T> b);
	friend Vector<T> mtl_minus<T>(const Vector<T>& A, const complex<T> b);
	friend Vector<T> mtl_times<T>(const Vector<T>& A, const complex<T> b);
	friend Vector<T> mtl_divide<T>(const Vector<T>& A, const complex<T> b);
	friend Vector<T> mtl_plus<T>(const complex<T> b, const Vector<T>& A);
	friend Vector<T> mtl_minus<T>(const complex<T> b, const Vector<T>& A);
	friend Vector<T> mtl_times<T>(const complex<T> b, const Vector<T>& A);
	friend Vector<T> mtl_divide<T>(const complex<T> b, const Vector<T>& A);
#endif
	friend int Length<T>(const Vector<T>& A);	friend T Sum<T>(const Vector<T>& A);	friend Vector<T> Transpose<T>(const Vector<T>& A);	friend Vector<T> ArrayTranspose<T>(const Vector<T>& A);
	friend Matrix<T> OuterProd<T>(const Vector<T>& A, const Vector<T>& B);	friend T InnerProd<T>(const Vector<T>& A, const Vector<T>& B);
	friend Vector<T> Cross<T>(const Vector<T>& A, const Vector<T>& B);
	friend T Dot<T>(const Vector<T>& A, const Vector<T>& B);	friend Vector<T> ArrayMultiply<T>(const Vector<T>& A, const Vector<T>& B);	friend Vector<T> ArrayDivide<T>(const Vector<T>& A, const Vector<T>& B);
	friend Vector<int> Int<T>(const Vector<T>& A);	friend Vector<float> Float<T>(const Vector<T>& A);
	friend Vector<double> Double<T>(const Vector<T>& A);
	friend Vector<T> Abs<T>(const Vector<T>& A);
	friend Vector<T> Sign<T>(const Vector<T>& A);
	friend Vector<T> Pow<T>(const Vector<T>& A, double b);
	friend Vector<T> Pow<T>(const Vector<T>& A, int b);
	friend Vector<T> Exp<T>(const Vector<T>& A);	friend Vector<T> Log<T>(const Vector<T>& A);	friend Vector<T> Digamma<T>(const Vector<T>& A);	friend Vector<T> Gammaln<T>(const Vector<T>& A);	friend Matrix<T> Diag<T>(const Vector<T> A);	friend T Mean<T>(const Vector<T>& A);
	friend Vector<T> Cumsum<T>(const Vector<T>& A);
	friend Vector<T> Cumprod<T>(const Vector<T>& A);	friend string Num2str<T>(const Vector<T>& A);	friend int Sort<T>(const Vector<T>& A, Vector<T>& v, Vector<int>& orderA, int order);
	friend Vector<T> FFT<T>(const Vector<T>& A,int N);
	friend Vector<T> IFFT<T>(const Vector<T>& A,int N);
	friend Vector<T> Merge<T>(const Vector<T>& A,const Vector<T>& B);#else
	friend Vector<T> mtl_plus(const Vector<T>& A, const Vector<T>& B);
	friend Vector<T> mtl_minus(const Vector<T>& A, const Vector<T>& B);
	friend Vector<T> mtl_plus(const Vector<T>& A, const double b);
	friend Vector<T> mtl_minus(const Vector<T>& A, const double b);
	friend Vector<T> mtl_times(const Vector<T>& A, const double b);
	friend Vector<T> mtl_divide(const Vector<T>& A, const double b);
	friend Vector<T> mtl_plus(const double b, const Vector<T>& A);
	friend Vector<T> mtl_minus(const double b, const Vector<T>& A);
	friend Vector<T> mtl_times(const double b, const Vector<T>& A);
	friend Vector<T> mtl_divide(const double b, const Vector<T>& A);
	friend Vector<T> mtl_times(const Vector<T>& A, const Vector<T>& B);
	friend Vector<T> mtl_divide(const Vector<T>& A, const Vector<T>& B);
	friend ostream& mtl_ostream(ostream& s, const Vector<T>& A);	friend istream& mtl_istream(istream& s, Vector<T>& A);

#ifndef DISABLE_COMPLEX
	friend Vector<T> mtl_plus(const Vector<T>& A, const complex<T> b);
	friend Vector<T> mtl_minus(const Vector<T>& A, const complex<T> b);
	friend Vector<T> mtl_times(const Vector<T>& A, const complex<T> b);
	friend Vector<T> mtl_divide(const Vector<T>& A, const complex<T> b);
	friend Vector<T> mtl_plus(const complex<T> b, const Vector<T>& A);
	friend Vector<T> mtl_minus(const complex<T> b, const Vector<T>& A);
	friend Vector<T> mtl_times(const complex<T> b, const Vector<T>& A);
	friend Vector<T> mtl_divide(const complex<T> b, const Vector<T>& A);
#endif
	friend int Length(const Vector<T>& A);	friend T Sum(const Vector<T>& A);
	friend Vector<T> Transpose(const Vector<T>& A);	friend Vector<T> ArrayTranspose(const Vector<T>& A);
	friend Matrix<T> OuterProd(const Vector<T>& A, const Vector<T>& B);	friend T InnerProd(const Vector<T>& A, const Vector<T>& B);
	friend Vector<T> Cross(const Vector<T>& A, const Vector<T>& B);
	friend T Dot(const Vector<T>& A, const Vector<T>& B);	friend Vector<T> ArrayMultiply(const Vector<T>& A, const Vector<T>& B);	friend Vector<T> ArrayDivide(const Vector<T>& A, const Vector<T>& B);	friend Vector<int> Int(const Vector<T>& A);
	friend Vector<float> Float(const Vector<T>& A);
	friend Vector<double> Double(const Vector<T>& A);
	friend Vector<T> Abs(const Vector<T>& A);
	friend Vector<T> Sign(const Vector<T>& A);	friend Vector<T> Pow(const Vector<T>& A, double b);
	friend Vector<T> Pow(const Vector<T>& A, int b);
	friend Vector<T> Exp(const Vector<T>& A);	friend Vector<T> Log(const Vector<T>& A);	friend Vector<T> Digamma(const Vector<T>& A);	friend Vector<T> Gammaln(const Vector<T>& A);	friend Matrix<T> Diag(const Vector<T> A);	friend T Mean(const Vector<T>& A);
	friend Vector<T> Cumsum(const Vector<T>& A);
	friend Vector<T> Cumprod(const Vector<T>& A);	friend string Num2str(const Vector<T>& A);	friend int Sort(const Vector<T>& A, Vector<T>& v, Vector<int>& orderA, int order);
	friend Vector<T> FFT(const Vector<T>& A,int N);
	friend Vector<T> IFFT(const Vector<T>& A,int N);
	friend Vector<T> Merge(const Vector<T>& A,const Vector<T>& B);

#endif	
	/////////////////////////////
	// member functions
	/////////////////////////////	int Size() const;
	VectorType Type() const;
	int SetType(VectorType type_);
	Vector<T> t() const;	Vector<T> ct() const;
	int Resize(int new_n);	int Add(const T& a);	int Erase(int c);	void Clear();
	bool Empty() const;
	T Sum_() const;	T Max_(int* idx=0) const;	T Min_(int* idx=0) const;
	int Print(ostream& s, const char *name=0);	int Print(ostream& s, string& name);
	int Read(istream& s, string& name);
	int Read(istream& s, const char *name=0);	Vector<T> SubVector(int n1, int n2);	int Save(const string& fname);
	int SaveMatlab(const string& fname);
	void SetPermIdentity();

	int IsOne(double tolerance=1e-6) const;
	int IsZero(double tolerance=1e-6) const;
	int IsUnit(double tolerance=1e-6) const;

	void FromInt(const Vector<int>& A);
	void FromFloat(const Vector<float>& A);
	void FromDouble(const Vector<double>& A);
	Vector<int> ToInt();
	Vector<float> ToFloat();
	Vector<double> ToDouble();

public:
	/////////////////////////////
	// exported static functions
	/////////////////////////////
	static Vector<T> Rand(int m);
	static Vector<T> Randn(int m);
	static Vector<T> CRandn(int m);

	/////////////////////////////
	// local static functions
	/////////////////////////////
	static double normp(const Vector<T>& A,int p);
	static int FFTBase(const Vector<T>& A,int N,int isign,Vector<T>& C);
	static int FFTCore(Vector<T>& data,int nn,int isign);
};typedef Vector<float> FVector;typedef Vector<double> DVector;typedef Vector<FComplex> CFVector;
typedef Vector<DComplex> CDVector;
// ------------------------------------------------------------------------// Vector implementation// ------------------------------------------------------------------------#ifndef local_max
#define local_max(a, b)  (((a) > (b)) ? (a) : (b))
#endif
#ifndef local_min
#define local_min(a, b)  (((a) < (b)) ? (a) : (b)) 
#endif


/////////////////////////////
// constructor and destructor
/////////////////////////////template <typename T> Vector<T>::Vector(int n_,VectorType type_,const T& v_) : n(n_),type(type_) {
	vec.resize(n_+1);	for(int i=1;i<=n_;i++) vec[i]=v_;}


template <typename T> Vector<T>::Vector(const Vector<T>& v_,int n_,VectorType type_) : n(n_),type(type_) {
	vec.resize(n_+1);
	int i;
	for(i=1;i<=n_;i++) {
		if(i<=v_.Size()) vec[i]=v_[i];
		else vec[i]=T();
	}
}


template <typename T> Vector<T>::Vector(int n_,VectorType type_,const char* v_) : n(n_),type(type_) {
	vec.resize(n_+1);
	Vector<string> num=mtl_split(v_);
	for(int i=1;i<=n_;i++) {
		if(i<=num.Size()) vec[i]=T(atof(num[i].c_str()));

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
丁香激情综合国产| 免费人成网站在线观看欧美高清| 国产精品66部| 国产日韩精品一区二区三区| 国产乱码精品1区2区3区| 国产精品―色哟哟| 日本国产一区二区| 日韩精品乱码免费| 精品99久久久久久| 不卡电影一区二区三区| 午夜精品免费在线观看| 精品福利av导航| 日本韩国视频一区二区| ...av二区三区久久精品| 色av一区二区| 蜜臀va亚洲va欧美va天堂| 久久在线免费观看| 色视频一区二区| 日韩电影网1区2区| 欧美国产日产图区| 欧美日韩综合在线免费观看| 久草这里只有精品视频| 中文文精品字幕一区二区| 欧美亚洲国产bt| 国产精一区二区三区| 一区二区三区精品在线观看| 精品免费国产二区三区 | 99精品视频在线播放观看| 夜夜嗨av一区二区三区四季av | 精品久久久久99| 99免费精品在线| 免费不卡在线视频| 中文字幕中文字幕一区| 日韩美一区二区三区| 91视频你懂的| 国产一区二区三区免费播放| 亚洲国产精品综合小说图片区| 精品免费日韩av| 欧美日韩国产大片| av在线这里只有精品| 麻豆成人在线观看| 亚洲免费资源在线播放| 精品成人免费观看| 欧美一区国产二区| 91黄色免费网站| eeuss国产一区二区三区| 青青草国产精品亚洲专区无| 亚洲免费视频成人| 欧美激情综合在线| 日韩午夜av一区| 欧美日韩精品一区二区三区| 99久久精品免费看国产| 国产成人av一区二区三区在线| 免费成人你懂的| 日韩激情中文字幕| 亚洲大片精品永久免费| 亚洲精品视频自拍| 国产精品久久久久久久久免费樱桃| 制服丝袜在线91| 亚洲国产精品成人综合| 欧美日韩久久不卡| 色爱区综合激月婷婷| 99国产精品一区| 国产成人高清视频| 国产999精品久久| 韩国精品免费视频| 黑人巨大精品欧美黑白配亚洲| 丝袜国产日韩另类美女| 亚洲第一电影网| 亚洲第一主播视频| 亚洲成人福利片| 三级欧美在线一区| 青青草国产精品亚洲专区无| 婷婷中文字幕一区三区| 丝袜国产日韩另类美女| 日韩精品一二三四| 青青草一区二区三区| 美女诱惑一区二区| 九九国产精品视频| 图片区小说区区亚洲影院| 同产精品九九九| 九九九精品视频| 国产成人亚洲综合a∨婷婷图片| 国产91精品精华液一区二区三区| 懂色av中文字幕一区二区三区| 成人小视频免费观看| 99在线精品一区二区三区| 色综合咪咪久久| 欧美日韩一区不卡| 日韩欧美一级二级三级久久久| 日韩欧美你懂的| 日本一区二区视频在线| 中文无字幕一区二区三区| 亚洲欧美电影一区二区| 亚洲电影在线免费观看| 蜜桃久久av一区| 国产91露脸合集magnet| 色综合久久久久久久久久久| 欧美三级日韩三级| 久久综合九色欧美综合狠狠| 国产精品卡一卡二| 午夜精品久久久久久久99水蜜桃| 蜜臀av一区二区三区| 成人动漫一区二区| 8x8x8国产精品| 国产精品天干天干在线综合| 亚洲免费观看高清完整| 亚洲高清免费在线| 国产黄人亚洲片| 欧美亚洲国产一卡| 久久久久国产一区二区三区四区| 亚洲日穴在线视频| 麻豆精品视频在线观看| 成人性生交大片免费看中文| 欧美精品自拍偷拍| 国产欧美日韩综合精品一区二区| 中文字幕欧美日韩一区| 日韩电影在线看| 不卡欧美aaaaa| 欧美成人性福生活免费看| 国产精品国产三级国产普通话99 | 日韩一区二区在线观看| 久久九九全国免费| 性久久久久久久久久久久| 国产 日韩 欧美大片| 欧美日韩精品专区| 中文字幕亚洲精品在线观看 | 黄色成人免费在线| 在线看日本不卡| 欧美激情综合在线| 日韩不卡手机在线v区| 91在线精品一区二区| 欧美成人一级视频| 午夜精品久久久久久久久久| 94色蜜桃网一区二区三区| 精品国产乱码久久久久久久久 | 日韩欧美国产午夜精品| 亚洲精品久久7777| 豆国产96在线|亚洲| 精品人伦一区二区色婷婷| 亚洲最新视频在线观看| 岛国精品在线播放| 精品国产一区二区三区不卡| 亚洲综合无码一区二区| 99久久99久久久精品齐齐| 精品国产91九色蝌蚪| 免费观看在线综合色| 欧美日韩三级一区| 亚洲一区欧美一区| 一本一本久久a久久精品综合麻豆| 久久综合九色综合97_久久久| 日本视频一区二区| 欧美精品久久一区二区三区 | 一区二区三区精品视频在线| 国产aⅴ精品一区二区三区色成熟| 日韩欧美激情四射| 美女视频黄频大全不卡视频在线播放| 欧美三级视频在线播放| 一区二区在线看| 色妞www精品视频| ...xxx性欧美| 色狠狠色噜噜噜综合网| 亚洲日本在线看| 91成人网在线| 亚洲精品水蜜桃| 色哦色哦哦色天天综合| 亚洲最新视频在线观看| 欧美午夜寂寞影院| 肉丝袜脚交视频一区二区| 欧美精品三级在线观看| 日精品一区二区| 欧美不卡在线视频| 国产一区二区三区观看| 久久婷婷综合激情| 成人免费视频免费观看| 欧美激情艳妇裸体舞| 99re成人精品视频| 一区二区三区毛片| 538prom精品视频线放| 免费成人av资源网| 久久久久久综合| 豆国产96在线|亚洲| 《视频一区视频二区| 欧美午夜精品免费| 蜜臀a∨国产成人精品| 26uuu精品一区二区| 成人性生交大片免费| 一区二区国产视频| 欧美一区二区三区免费视频 | 欧美v日韩v国产v| 国产一区二区三区久久悠悠色av| 国产偷国产偷精品高清尤物 | 婷婷六月综合亚洲| 欧美成人video| 不卡av免费在线观看| 亚洲一区二区三区三| 精品国产乱码91久久久久久网站| 国产精品亚洲人在线观看| 亚洲一区二区三区四区不卡| 日韩欧美在线影院|