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

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

?? vector.h

?? 矩陣運(yùn)算的模板類(lèi)
?? H
?? 第 1 頁(yè) / 共 3 頁(yè)
字號(hào):
// -*- 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()));

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩视频一区在线观看| 麻豆91小视频| 亚洲免费观看视频| 国产精品理伦片| 中文字幕在线不卡一区二区三区| 久久免费偷拍视频| 日本一区二区免费在线| 国产精品久久影院| 亚洲欧美日韩国产综合在线| 亚洲精品国产一区二区三区四区在线| 亚洲人妖av一区二区| 国产精品久99| 亚洲久本草在线中文字幕| 亚洲柠檬福利资源导航| 亚洲黄色尤物视频| 亚洲1区2区3区4区| 美女视频免费一区| 国产精品一区一区三区| 成人美女视频在线看| 91欧美一区二区| 欧美日韩精品一区视频| 精品久久久三级丝袜| 国产精品少妇自拍| 亚洲精品久久久久久国产精华液| 天涯成人国产亚洲精品一区av| 日韩国产精品久久| 国产高清不卡一区二区| 99国产精品久久久久久久久久 | 色欧美日韩亚洲| 欧美日韩精品一区二区三区 | 884aa四虎影成人精品一区| 日韩三级精品电影久久久| 国产欧美日韩另类一区| 亚洲三级在线免费观看| 秋霞午夜av一区二区三区| 国产一区二区三区香蕉| 91蜜桃网址入口| 91精品国产综合久久婷婷香蕉| 久久一日本道色综合| 亚洲免费观看高清完整版在线| 日韩国产精品久久久久久亚洲| 国产福利一区在线观看| 欧美性色欧美a在线播放| 精品国产一区二区三区四区四| 亚洲婷婷综合色高清在线| 日一区二区三区| 成人a免费在线看| 日韩一区二区三区视频在线观看| 国产精品毛片久久久久久| 丝袜美腿亚洲色图| 成人精品gif动图一区| 欧美久久久一区| 国产精品成人免费在线| 另类调教123区 | 欧美成人a视频| 一区二区视频免费在线观看| 国产一区二区影院| 欧美亚洲免费在线一区| 国产日韩欧美不卡| 三级欧美在线一区| 色综合久久综合| 国产日产欧美一区二区视频| 日韩精品成人一区二区三区| 99热在这里有精品免费| www国产成人| 日韩在线一二三区| 91麻豆精品秘密| 国产人久久人人人人爽| 日本美女一区二区三区| 日本二三区不卡| 国产精品婷婷午夜在线观看| 蜜桃视频第一区免费观看| 日本韩国欧美在线| 亚洲国产成人自拍| 九九视频精品免费| 欧美乱妇23p| 亚洲一卡二卡三卡四卡| 91碰在线视频| 中文字幕在线视频一区| 国产99久久久精品| 久久午夜免费电影| 六月婷婷色综合| 欧美精品三级日韩久久| 亚洲激情五月婷婷| 91麻豆.com| 亚洲情趣在线观看| 91在线播放网址| 国产精品护士白丝一区av| 国产成人在线电影| 国产午夜亚洲精品不卡| 麻豆国产欧美日韩综合精品二区 | 欧美精品第1页| 亚洲国产成人91porn| 欧美色综合网站| 亚洲国产精品自拍| 欧美日韩中文字幕一区| 一区二区三区四区亚洲| 91久久国产综合久久| 一级日本不卡的影视| 在线观看免费亚洲| 亚洲自拍偷拍网站| 在线观看日韩高清av| 亚洲国产一区二区三区| 欧美午夜一区二区| 日韩电影在线一区| 日韩亚洲欧美中文三级| 蜜桃av一区二区三区电影| 日韩欧美精品三级| 九色|91porny| 国产欧美一二三区| 99re6这里只有精品视频在线观看| 国产亚洲欧美日韩在线一区| 国产成人综合精品三级| 国产精品久久久久影院亚瑟| 一本一道久久a久久精品综合蜜臀| 亚洲欧美日本韩国| 欧美少妇bbb| 捆绑调教美女网站视频一区| 久久先锋影音av鲁色资源| 风间由美一区二区三区在线观看 | 色8久久人人97超碰香蕉987| 亚洲影院理伦片| 制服丝袜成人动漫| 九九九精品视频| 国产精品久久久久久久久久久免费看 | 欧美不卡一区二区| 国产成人99久久亚洲综合精品| 中文字幕一区二区三区色视频| 91黄色激情网站| 免费视频最近日韩| 国产亚洲午夜高清国产拍精品| 91丨九色丨蝌蚪富婆spa| 亚洲成人福利片| 精品免费视频一区二区| 成人激情黄色小说| 亚洲一区二区av在线| 欧美videos中文字幕| 99r国产精品| 三级精品在线观看| 亚洲国产经典视频| 欧美欧美欧美欧美| 福利一区在线观看| 五月天一区二区| 亚洲国产精品国自产拍av| 欧美揉bbbbb揉bbbbb| 国产精品18久久久久久久久久久久 | 欧美精品日日鲁夜夜添| 国产成人精品亚洲777人妖| 亚洲精品美腿丝袜| 久久中文娱乐网| 欧美日韩国产首页| 国产成a人亚洲精| 天堂一区二区在线免费观看| 中文字幕精品在线不卡| 欧美精品视频www在线观看 | 欧美激情一区二区在线| 7777精品伊人久久久大香线蕉最新版| 国产一区二区三区四| 亚洲观看高清完整版在线观看| www一区二区| 欧美二区三区的天堂| 97se狠狠狠综合亚洲狠狠| 麻豆精品视频在线观看| 亚洲精品国产精华液| 久久精品视频一区二区| 欧美一卡二卡三卡| 91国偷自产一区二区三区观看| 国产黑丝在线一区二区三区| 日本大胆欧美人术艺术动态| 最新日韩av在线| 久久综合九色综合97婷婷女人| 欧美日韩美女一区二区| 99re这里都是精品| 国产毛片精品国产一区二区三区| 性欧美疯狂xxxxbbbb| 亚洲天堂福利av| 中文字幕av一区二区三区高| 日韩三级视频在线看| 欧美久久久久久久久久| 91国模大尺度私拍在线视频 | 久久精品一区二区三区不卡牛牛| 8x福利精品第一导航| 欧美探花视频资源| 91在线丨porny丨国产| 国产成人精品1024| 国产在线播放一区三区四| 秋霞影院一区二区| 三级精品在线观看| 午夜视黄欧洲亚洲| 亚洲高清中文字幕| 亚洲一区二区综合| 亚洲宅男天堂在线观看无病毒| 中文字幕日韩av资源站| 国产精品素人视频| 国产欧美一区二区精品久导航| 久久久久久影视| 国产色产综合色产在线视频 | 美女视频一区二区三区| 免费欧美在线视频| 热久久国产精品|