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

tbwshc

tbw

  C++博客 :: 首頁 :: 聯系 :: 聚合  :: 管理
  95 Posts :: 8 Stories :: 3 Comments :: 0 Trackbacks

常用鏈接

留言簿(4)

我參與的團隊

搜索

  •  

最新評論

閱讀排行榜

評論排行榜

 二叉堆的實現數據結構中如何使用,我任務主要是在操作系統中的任務優先級調度問題,當然也可以用于實現堆排序問題,比如找出數組中的第K個最小值問題,采用二叉堆能夠快速的實現,今天我就采用C語言實現了一個簡單的二叉堆操作,完成這些數據結構我并不知道能干什么,我就當自己在練習C語言的功底吧。逐步完成自己的代碼,希望自己在知識的理解力上有一定的提高。

    二叉堆是非常有特點的數據結構,可以采用簡單的數組就能實現,當然鏈表的實現也是沒有問題的,畢竟是一個二叉樹問題,當然可以采用鏈表實現。采用數組實現時,可以找到兩個特別明顯的規律:

    左兒子:L_Son = Parent * 2;

    右兒子:R_Son = Parent * 2 + 1;

    二叉堆是一顆完全填滿的樹,可能例外的是在底層,底層上的元素是從左到右填入,當然二叉堆可以是基于大值的排序,也可以是基于小值的排列形式,本文采用簡單的基于小值的形式。主要完成的操作:1、最小值的刪除操作,該操作會刪除根節點,然后提升兒子節點來代替根節點,具體的實現過程中通過提升左右兒子中較小的作為父結點,依此提升直到到達最底層,這種實現方式叫做下慮法。2、數據的插入操作,插入操作可能會破壞二叉堆的結構,一般在最底層創建一個空穴,然后比較插入值與空穴父結點的值,如果大于父結點的值,那么直接插入到空穴中,如果小于父結點,則將父結點的值插入到剛創建的空穴中,在父結點所在位置上形成新的父結點,這時候再和父結點的父結點比較,具體操作如上所述,直到找到具體的插入地址。當結點個數為偶數時,在刪除操作中需要注意節點是否有右兒子的情況。具體的可以參考代碼中的說明。

    具體的實現如下:

    結構體:

    #ifndef __BINARYHEAP_H_H_

    #define __BINARYHEAP_H_H_

    #include <stdlib.h>

    #include <assert.h>

    #define bool int

    #define true 1

    #define false 0

    /*打算采用數組的方式實現完全二叉堆*/

    typedef struct _binaryheap

    {

    /*因為需要動態擴展,

    *采用靜態數組不方便*/

    int * parray;

    /*目前存在的結點*/

    int currentSize;

    /*樹的實際容量*/

    int capacity;

    }BinaryHeap_t, *BinaryHeap_handle_t;

    #ifdef __cplusplus

    extern "C"

    {

    #endif

    bool init_BinaryHeap(BinaryHeap_handle_t heap, int capacity);

    bool alloc_BinaryHeap(BinaryHeap_handle_t *heap, int capacity);

    void delete_BinaryHeap(BinaryHeap_handle_t heap);

    void free_BinaryHeap(BinaryHeap_handle_t *heap);

    bool insert(BinaryHeap_handle_t heap,int value);

    int deleteMin(BinaryHeap_handle_t heap);

    bool isEmpty(BinaryHeap_handle_t heap);

    #ifdef __cplusplus

    }

    #endif

    #endif

    實現的接口函數如下:

    #include "binaryheap.h"

    bool isEmpty(BinaryHeap_handle_t heap)

    {

    assert(heap != NULL);

    return heap->currentSize == 0;

    }

    bool init_BinaryHeap(BinaryHeap_handle_t heap, int capacity)

    {

    int *parray = NULL;

    if(heap == NULL)

    return false;

    parray = (int *)calloc(capacity+1,sizeof(int));

    if(parray == NULL)

    return false;

    heap->parray = parray;

    heap->capacity = capacity;

    heap->currentSize = 0;

    return true;

    }

    void delete_BinaryHeap(BinaryHeap_handle_t heap)

    {

    assert(heap != NULL && heap->parray != NULL);

    heap->capacity = 0;

    heap->currentSize = 0;

    free(heap->parray);

    heap->parray = NULL;

    }

    void free_BinaryHeap(BinaryHeap_handle_t *heap)

    {

    assert(*heap != NULL);

    (*heap)->capacity = 0;

    (*heap)->currentSize = 0;

    free((*heap)->parray);

    (*heap)->parray = NULL;

    free(*heap);

    *heap = NULL;

    }

    bool alloc_BinaryHeap(BinaryHeap_handle_t *heap, int capacity)

    {

    int *parray = NULL;

    if(*heap != NULL)

    return false;

    *heap = (int *)calloc(1, sizeof(BinaryHeap_t));

    if(*heap == NULL)

    return false;

    /*其中的1,主要是為了使得數組從下標1開始計算*/

    parray =(int *)calloc(capacity + 1, sizeof(int));

    if(parray == NULL)

    return false;

    (*heap)->parray = parray;

    (*heap)->capacity = capacity;

    (*heap)->currentSize = 0;

    return true;

    }

    /**************************************************

    * 采用上慮法實現數據的插入操作

    * 上慮法的實現方式比較簡單,首先創建一個空節點

    * 然后將需要插入的值與當前空穴的父結點進行比較

    * 如果大于父結點,直接插入空穴中

    * 如果小于父結點的值,則將父結點的值下拉到空穴中

    * 之前父結點的位置就是空穴,接著與上層比較

    * 直到找到父結點大于當前插入值的情況

    **************************************************/

    bool insert(BinaryHeap_handle_t heap, int value)

    {

    int index = 0;

    if(heap == NULL || heap->parray == NULL)

    return false;

    /*得到一個新的空穴下標*/

    index = ++heap->currentSize;

    /*條件是不是第一個下標和插入值比對應父結點小*/

    while(index > 1 && value < heap->parray[index/2])

    {

    /*將父結點保存到當前結點處*/

    heap->parray[index] = heap->parray[index/2];

    /*得到父結點的空穴位置*/

    index /= 2;

    }

    /*將插入的值保存到剩余的空穴中*/

    heap->parray[index] = value;

    return true;

    }

    /***********************************************************

    * 下慮法實現數據的重排序操作

    * 實現的方式,將子結點的兩個兒子進行比較,將小的提升

    * 需要注意的是如何讓判斷節點是否一定存在右兒子

    * 實現的方式主要是利用了二叉堆的特性:

    * 2*pare = L_child

    * 2*pare + 1 = R_child;

    ***********************************************************/

    static void presort_BinaryHeap(BinaryHeap_handle_t heap,int hole)

    {

    /*這是二叉堆的特性*/

    int child = hole * 2;

    /*保存當前數據操作*/

    int tmp = 0;

    assert(heap != NULL && heap->parray != NULL);

    tmp = heap->parray[hole];

    /*hold * 2 <= heap->currentSize 判斷了當前結點是否為最低層*/

    for(; hole * 2 <= heap->currentSize; hole = child)

    {

    child = hole * 2;

    /*******************************

    *這句代碼解決是否存在右結點的問題

    *并確定了那個子結點提升的問題

    *******************************/

    if((child != heap->currentSize)

    && (heap->parray[child + 1] < heap->parray[child]))

    child ++;

    if(heap->parray[child] < tmp)

    {

    /*將子結點提升為父結點*/

    heap->parray[hole] = heap->parray[child];

    }

    }

    /*到達了最低的層,也就是樹葉*/

    heap->parray[hole] = tmp;

    }

    /*實現數據的下慮法實現數據的刪除操作*/

    int deleteMin(BinaryHeap_handle_t heap)

    {

    int ret = 0;

    int index = 0;

    assert(!isEmpty(heap));

    /*需要返回的值*/

    ret = heap->parray[1];

    /*將最后需要釋放內存空間的值保存到第一個內存空間中*/

    heap->parray[1] = heap->parray[heap->currentSize --];

    /*從表頭開始將新的二叉樹進行重新排序*/

    presort_BinaryHeap(heap, 1);

    return ret;

    }

    測試代碼:

    #include "binaryheap.h"

    #include <stdio.h>

    #include <time.h>

    void print_binaryheap(BinaryHeap_handle_t heap)[nettpage]

    {

    int i = 0;

    assert(heap != NULL && heap->parray != NULL);

    for(i = 1; i <= heap->currentSize; ++ i)

    {

    if(i %6)

    printf("%d\t",heap->parray[i]);

    else

    printf("\n%d\t",heap->parray[i]);

    }

    printf("\n");

    }

    int main()

    {

    int i = 0;

    int value = 0;

    srand((int)time(0));

    printf("********Test Binaryheap**************\n");

    BinaryHeap_t bheap;

    BinaryHeap_handle_t *pheap = NULL;

    printf("init and alloc test:\n");

    if(init_BinaryHeap(&bheap,10))

    {

    printf("init_BinaryHeap() successed!\n");

    }

    if (alloc_BinaryHeap(&pheap,15));

    {

    printf("alloc_BInaryHeap() successed!\n");

    }

    printf("***insert test*****\n");

    for(; i < 10; ++ i)

    {

    if(!insert(&bheap,5 * i - rand()%20))

    {

    printf("i = %d:insert failed !!\n",i);

    }

    }

    for(i = 0; i < 15; ++ i)

    {

    if(!insert(pheap,i * 8 - rand()%20))

    {

    printf("i = %d:insert failed!!\n",i);

    }

    }

    print_binaryheap(&bheap);

    print_binaryheap(pheap);

    printf("****deleteMin test****\n");

    for(i = 0; i < 5; ++ i)

    {

    value = deleteMin(&bheap);

    printf("bheap deleted:%d\n",value);

    value = deleteMin(pheap);

    printf("pheap deleted:%d\n",value);

    }

    print_binaryheap(&bheap);

    print_binaryheap(pheap);

    printf("deleteMin test successed\n");

    printf("****delete and free test:*******\n");

    delete_BinaryHeap(&bheap);

    printf("Is the bheap empty ? %s\n",

    isEmpty(&bheap)?"Yes":"No");

    free_BinaryHeap(&pheap);

    printf("*********Test successed!***********\n");

    pheap = NULL;

    return 0;

    }

    測試結果:

    [gong@Gong-Computer c_binaryheap]$ ./testbinaryheap

    ********Test Binaryheap**************

    init and alloc test:

    init_BinaryHeap()

    alloc_BInaryHeap()

    ***insert test*****

    -11    -9    -9    14    15

    10    21    23    40    26

    -16    2    14    20    13

    21    33    49    61    67    76

    86    83    95    109

    ****deleteMin test****

    bheap deleted:-11

    pheap deleted:-16

    bheap deleted:-9

    pheap deleted:2

    bheap deleted:-9

    pheap deleted:13

    bheap deleted:10

    pheap deleted:14

    bheap deleted:14

    pheap deleted:20

    15    23    21    40    26

    21    49    21    61    67

    76    33    95    83    109

    deleteMin test successed

    ****delete and free test:*******

    Is the bheap empty ? Yes

    *********Test

    從上面的測試結果可知,基本上實現了二叉堆的基本插入、刪除操作。代碼的關鍵點在于刪除中的下慮和插入過程中的上慮操作。以及如何判斷代碼是否存在右兒子,如何充分運用二叉堆的特性。    二叉堆的實現數據結構中如何使用,我任務主要是在操作系統中的任務優先級調度問題,當然也可以用于實現堆排序問題,比如找出數組中的第K個最小值問題,采用二叉堆能夠快速的實現,今天我就采用C語言實現了一個簡單的二叉堆操作,完成這些數據結構我并不知道能干什么,我就當自己在練習C語言的功底吧。逐步完成自己的代碼,希望自己在知識的理解力上有一定的提高。

    二叉堆是非常有特點的數據結構,可以采用簡單的數組就能實現,當然鏈表的實現也是沒有問題的,畢竟是一個二叉樹問題,當然可以采用鏈表實現。采用數組實現時,可以找到兩個特別明顯的規律:

    左兒子:L_Son = Parent * 2;

    右兒子:R_Son = Parent * 2 + 1;

    二叉堆是一顆完全填滿的樹,可能例外的是在底層,底層上的元素是從左到右填入,當然二叉堆可以是基于大值的排序,也可以是基于小值的排列形式,本文采用簡單的基于小值的形式。主要完成的操作:1、最小值的刪除操作,該操作會刪除根節點,然后提升兒子節點來代替根節點,具體的實現過程中通過提升左右兒子中較小的作為父結點,依此提升直到到達最底層,這種實現方式叫做下慮法。2、數據的插入操作,插入操作可能會破壞二叉堆的結構,一般在最底層創建一個空穴,然后比較插入值與空穴父結點的值,如果大于父結點的值,那么直接插入到空穴中,如果小于父結點,則將父結點的值插入到剛創建的空穴中,在父結點所在位置上形成新的父結點,這時候再和父結點的父結點比較,具體操作如上所述,直到找到具體的插入地址。當結點個數為偶數時,在刪除操作中需要注意節點是否有右兒子的情況。具體的可以參考代碼中的說明。

    具體的實現如下:

    結構體:

    #ifndef __BINARYHEAP_H_H_

    #define __BINARYHEAP_H_H_

    #include <stdlib.h>

    #include <assert.h>

    #define bool int

    #define true 1

    #define false 0

    /*打算采用數組的方式實現完全二叉堆*/

    typedef struct _binaryheap

    {

    /*因為需要動態擴展,

    *采用靜態數組不方便*/

    int * parray;

    /*目前存在的結點*/

    int currentSize;

    /*樹的實際容量*/

    int capacity;

    }BinaryHeap_t, *BinaryHeap_handle_t;

    #ifdef __cplusplus

    extern "C"

    {

    #endif

    bool init_BinaryHeap(BinaryHeap_handle_t heap, int capacity);

    bool alloc_BinaryHeap(BinaryHeap_handle_t *heap, int capacity);

    void delete_BinaryHeap(BinaryHeap_handle_t heap);

    void free_BinaryHeap(BinaryHeap_handle_t *heap);

    bool insert(BinaryHeap_handle_t heap,int value);

    int deleteMin(BinaryHeap_handle_t heap);

    bool isEmpty(BinaryHeap_handle_t heap);

    #ifdef __cplusplus

    }

    #endif

    #endif

    實現的接口函數如下:

    #include "binaryheap.h"

    bool isEmpty(BinaryHeap_handle_t heap)

    {

    assert(heap != NULL);

    return heap->currentSize == 0;

    }

    bool init_BinaryHeap(BinaryHeap_handle_t heap, int capacity)

    {

    int *parray = NULL;

    if(heap == NULL)

    return false;

    parray = (int *)calloc(capacity+1,sizeof(int));

    if(parray == NULL)

    return false;

    heap->parray = parray;

    heap->capacity = capacity;

    heap->currentSize = 0;

    return true;

    }

    void delete_BinaryHeap(BinaryHeap_handle_t heap)

    {

    assert(heap != NULL && heap->parray != NULL);

    heap->capacity = 0;

    heap->currentSize = 0;

    free(heap->parray);

    heap->parray = NULL;

    }

    void free_BinaryHeap(BinaryHeap_handle_t *heap)

    {

    assert(*heap != NULL);

    (*heap)->capacity = 0;

    (*heap)->currentSize = 0;

    free((*heap)->parray);

    (*heap)->parray = NULL;

    free(*heap);

    *heap = NULL;

    }

    bool alloc_BinaryHeap(BinaryHeap_handle_t *heap, int capacity)

    {

    int *parray = NULL;

    if(*heap != NULL)

    return false;

    *heap = (int *)calloc(1, sizeof(BinaryHeap_t));

    if(*heap == NULL)

    return false;

    /*其中的1,主要是為了使得數組從下標1開始計算*/

    parray =(int *)calloc(capacity + 1, sizeof(int));

    if(parray == NULL)

    return false;

    (*heap)->parray = parray;

    (*heap)->capacity = capacity;

    (*heap)->currentSize = 0;

    return true;

    }

    /**************************************************

    * 采用上慮法實現數據的插入操作

    * 上慮法的實現方式比較簡單,首先創建一個空節點

    * 然后將需要插入的值與當前空穴的父結點進行比較

    * 如果大于父結點,直接插入空穴中

    * 如果小于父結點的值,則將父結點的值下拉到空穴中

    * 之前父結點的位置就是空穴,接著與上層比較

    * 直到找到父結點大于當前插入值的情況

    **************************************************/

    bool insert(BinaryHeap_handle_t heap, int value)

    {

    int index = 0;

    if(heap == NULL || heap->parray == NULL)

    return false;

    /*得到一個新的空穴下標*/

    index = ++heap->currentSize;

    /*條件是不是第一個下標和插入值比對應父結點小*/


while(index > 1 && value < heap->parray[index/2])

    {

    /*將父結點保存到當前結點處*/

    heap->parray[index] = heap->parray[index/2];

    /*得到父結點的空穴位置*/

    index /= 2;

    }

    /*將插入的值保存到剩余的空穴中*/

    heap->parray[index] = value;

    return true;

    }

    /***********************************************************

    * 下慮法實現數據的重排序操作

    * 實現的方式,將子結點的兩個兒子進行比較tbw,將小的提升

    * 需要注意的是如何讓判斷節點是否一定存在右兒子

    * 實現的方式主要是利用了二叉堆的特性:

    * 2*pare = L_child

    * 2*pare + 1 = R_child;

    ***********************************************************/

    static void presort_BinaryHeap(BinaryHeap_handle_t heap,int hole)

    {

    /*這是二叉堆的特性*/

    int child = hole * 2;

    /*保存當前數據操作*/

    int tmp = 0;

    assert(heap != NULL && heap->parray != NULL);

    tmp = heap->parray[hole];

    /*hold * 2 <= heap->currentSize 判斷了當前結點是否為最低層*/

    for(; hole * 2 <= heap->currentSize; hole = child)

    {

    child = hole * 2;

    /*******************************

    *這句代碼解決是否存在右結點的問題

    *并確定了那個子結點提升的問題

    *******************************/

    if((child != heap->currentSize)

    && (heap->parray[child + 1] < heap->parray[child]))

    child ++;

    if(heap->parray[child] < tmp)

    {

    /*將子結點提升為父結點*/

    heap->parray[hole] = heap->parray[child];

    }

    }

    /*到達了最低的層,也就是樹葉*/

    heap->parray[hole] = tmp;

    }

    /*實現數據的下慮法實現數據的刪除操作*/

    int deleteMin(BinaryHeap_handle_t heap)

    {

    int ret = 0;

    int index = 0;

    assert(!isEmpty(heap));

    /*需要返回的值*/

    ret = heap->parray[1];

    /*將最后需要釋放內存空間的值保存到第一個內存空間中*/

    heap->parray[1] = heap->parray[heap->currentSize --];

    /*從表頭開始將新的二叉樹進行重新排序*/

    presort_BinaryHeap(heap, 1);

    return ret;

    }

    測試代碼:

    #include "binaryheap.h"

    #include <stdio.h>

    #include <time.h>

    void print_binaryheap(BinaryHeap_handle_t heap)

    {

    int i = 0;

    assert(heap != NULL && heap->parray != NULL);

    for(i = 1; i <= heap->currentSize; ++ i)

    {

    if(i %6)

    printf("%d\t",heap->parray[i]);

    else

    printf("\n%d\t",heap->parray[i]);

    }

    printf("\n");

    }

    int main()

    {

    int i = 0;

    int value = 0;

    srand((int)time(0));

    printf("********Test Binaryheap**************\n");

    BinaryHeap_t bheap;

    BinaryHeap_handle_t *pheap = NULL;

    printf("init and alloc test:\n");

    if(init_BinaryHeap(&bheap,10))

    {

    printf("init_BinaryHeap() successed!\n");

    }

    if (alloc_BinaryHeap(&pheap,15));

    {

    printf("alloc_BInaryHeap() successed!\n");

    }

    printf("***insert test*****\n");

    for(; i < 10; ++ i)

    {

    if(!insert(&bheap,5 * i - rand()%20))

    {

    printf("i = %d:insert failed !!\n",i);

    }

    }

    for(i = 0; i < 15; ++ i)

    {

    if(!insert(pheap,i * 8 - rand()%20))

    {

    printf("i = %d:insert failed!!\n",i);

    }

    }

    print_binaryheap(&bheap);

    print_binaryheap(pheap);

    printf("****deleteMin test****\n");

    for(i = 0; i < 5; ++ i)

    {

    value = deleteMin(&bheap);

    printf("bheap deleted:%d\n",value);

    value = deleteMin(pheap);

    printf("pheap deleted:%d\n",value);

    }

    print_binaryheap(&bheap);

    print_binaryheap(pheap);

    printf("deleteMin test successed\n");

    printf("****delete and free test:*******\n");

    delete_BinaryHeap(&bheap);

    printf("Is the bheap empty ? %s\n",

    isEmpty(&bheap)?"Yes":"No");

    free_BinaryHeap(&pheap);

    printf("*********Test successed!***********\n");

    pheap = NULL;

    return 0;

    }

    測試結果:

    [gong@Gong-Computer c_binaryheap]$ ./testbinaryheap

    ********Test Binaryheap**************

    init and alloc test:

    init_BinaryHeap()

    alloc_BInaryHeap()

    ***insert test*****

    -11    -9    -9    14    15

    10    21    23    40    26

    -16    2    14    20    13

    21    33    49    61    67    76

    86    83    95    109

    ****deleteMin test****

    bheap deleted:-11

    pheap deleted:-16

    bheap deleted:-9

    pheap deleted:2

    bheap deleted:-9

    pheap deleted:13

    bheap deleted:10

    pheap deleted:14

    bheap deleted:14

    pheap deleted:20

    15    23    21    40    26

    21    49    21    61    67

    76    33    95    83    109

    deleteMin test successed

    ****delete and free test:*******

    Is the bheap empty ? Yes

    *********Test

    從上面的測試結果可知,基本上實現了二叉堆的基本插入、刪除操作。tbw代碼的關鍵點在于刪除中的下慮和插入過程中的上慮操作。以及如何判斷代碼是否存在右兒子,如何充分運用二叉堆的特性。

posted on 2012-09-22 17:58 tbwshc 閱讀(350) 評論(0)  編輯 收藏 引用
青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <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>
            亚洲欧美亚洲| 久久精品在线观看| 国产美女精品一区二区三区| 性欧美大战久久久久久久免费观看| 99re热这里只有精品免费视频| 精品999成人| 一区二区三区在线视频免费观看| 欧美sm视频| 久久精品午夜| 性做久久久久久免费观看欧美| 99成人在线| 欧美国产免费| 久久九九99| 狠狠久久婷婷| 亚洲风情在线资源站| 欧美日韩在线三区| 欧美激情亚洲视频| 日韩一级免费| 欧美在线三区| 国产精品久久久久久户外露出| 一区二区在线不卡| 欧美一级专区| 中文高清一区| 欧美日韩一区在线| 一区二区三区日韩欧美精品| 亚欧成人精品| 欧美中文字幕在线观看| 久久影院午夜论| 欧美电影在线播放| 一区二区免费看| 欧美1区2区3区| 国产真实乱偷精品视频免| 日韩午夜电影av| 欧美精品免费视频| 亚洲免费观看高清在线观看| 欧美激情aaaa| 欧美日本亚洲韩国国产| 亚洲日本欧美天堂| 亚洲国产精品尤物yw在线观看| 欧美永久精品| 亚洲国产精品一区在线观看不卡| 久久精品一区蜜桃臀影院| 欧美日精品一区视频| 免费在线观看精品| 亚洲精品黄色| 亚洲欧美福利一区二区| 久久久福利视频| 欧美日韩一级大片网址| 国语自产精品视频在线看8查询8| 亚洲欧洲在线看| 久久亚洲高清| 国产精品美女主播| 亚洲女同在线| 欧美日韩高清不卡| 狠狠综合久久av一区二区小说 | 亚洲激情一区二区| 亚洲图片欧美一区| 欧美日韩精品一区二区在线播放| 黄色免费成人| 久久成人羞羞网站| 亚洲一区在线免费观看| 欧美日韩一区在线视频| 日韩亚洲欧美一区| 亚洲国产精品久久人人爱蜜臀| 亚洲国产日韩欧美在线动漫| 午夜视频一区| 亚洲专区国产精品| 国产精品一区久久| 久久久久.com| 久久精品国产亚洲5555| 国产一区二区丝袜高跟鞋图片 | 亚洲综合视频一区| 国产区欧美区日韩区| 欧美在线免费观看亚洲| 亚洲一区久久久| 国产欧美在线观看一区| 久久都是精品| 久久夜色精品| 在线视频一区二区| 亚洲在线成人| 国产一区二区三区日韩| 欧美a级片网| 欧美激情第9页| 亚洲欧美日韩另类精品一区二区三区| 亚洲视频一区在线| 国产午夜精品久久| 欧美国产高清| 欧美无砖砖区免费| 久久婷婷国产综合国色天香| 麻豆91精品91久久久的内涵| 99精品视频一区二区三区| 中文精品一区二区三区| 韩国美女久久| 日韩一级成人av| 国产亚洲欧美另类一区二区三区| 蜜臀a∨国产成人精品| 欧美日韩国产高清| 麻豆精品网站| 国产精品美女久久| 亚洲国产精品传媒在线观看| 国产精品羞羞答答| 欧美激情四色 | 销魂美女一区二区三区视频在线| 亚洲福利视频一区二区| 亚洲视频精品| av成人老司机| 久久久久久久91| 久久精品国产久精国产一老狼| 亚洲欧美国产精品va在线观看 | 午夜日韩av| 久久国产精品99久久久久久老狼| 亚洲激情电影在线| 亚洲欧美韩国| 中日韩午夜理伦电影免费| 久久久久成人网| 性欧美大战久久久久久久免费观看| 另类国产ts人妖高潮视频| 性欧美暴力猛交69hd| 久久九九有精品国产23| 欧美色大人视频| 免播放器亚洲| 国产一区在线观看视频| 亚洲一区二区三区在线看| 日韩视频不卡中文| 可以免费看不卡的av网站| 久久久久九九视频| 国产欧美一区二区三区视频| 中国女人久久久| 一区二区欧美国产| 久久精品国产清高在天天线| 午夜电影亚洲| 欧美性理论片在线观看片免费| 日韩一区二区电影网| 免费欧美日韩| 免费久久99精品国产| 国产精品爽爽ⅴa在线观看| 亚洲社区在线观看| 99这里只有久久精品视频| 欧美久久一区| 亚洲第一在线视频| 91久久久精品| 欧美国产精品| 亚洲精品中文字幕在线观看| 欧美成人精品在线观看| 久久亚洲精品伦理| 影音先锋亚洲视频| 午夜久久一区| 美女主播视频一区| 国产午夜精品在线观看| 欧美一级黄色网| 欧美一区二区三区视频免费| 国产亚洲毛片在线| 久久xxxx精品视频| 可以免费看不卡的av网站| 999亚洲国产精| 99精品视频一区二区三区| 国产精品久久7| 在线亚洲伦理| 久久久夜精品| 激情五月***国产精品| 欧美激情视频一区二区三区在线播放| 欧美成人蜜桃| 亚洲欧美区自拍先锋| 另类国产ts人妖高潮视频| 99国产精品一区| 久久精品99无色码中文字幕| 国产视频精品xxxx| 欧美成人午夜| 亚洲日本精品国产第一区| 欧美在线三区| 激情成人av| 欧美日韩专区在线| 亚洲伊人伊色伊影伊综合网| 欧美中文字幕在线观看| 99在线精品免费视频九九视| 欧美日韩视频在线一区二区观看视频| 久久久亚洲欧洲日产国码αv | 欧美激情成人在线| 国产在线精品一区二区中文| 免费成人黄色片| 亚洲自拍偷拍福利| 久久久欧美一区二区| 日韩五码在线| 国产精品久久久久久久久免费桃花 | 欧美一级久久久久久久大片| 亚洲国产精彩中文乱码av在线播放| 欧美不卡在线视频| 亚洲视频一区二区在线观看| 久久影院亚洲| 日韩一级黄色片| 国产精品视频一二三| 欧美精品一区二区三区蜜桃 | 亚洲承认在线| 国产精品日本一区二区| 亚洲视频电影在线| 日韩午夜高潮| 亚洲国产综合在线| 久久精品女人天堂| 午夜欧美精品| 一区二区成人精品|