pointer_pot.cpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:7k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: pointer_pot.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:19:22  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: pointer_pot.cpp,v 1000.1 2004/06/01 19:19:22 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE                          
  13.  *               National Center for Biotechnology Information
  14.  *                                                                          
  15.  *  This software/database is a "United States Government Work" under the   
  16.  *  terms of the United States Copyright Act.  It was written as part of    
  17.  *  the author's official duties as a United States Government employee and 
  18.  *  thus cannot be copyrighted.  This software/database is freely available 
  19.  *  to the public for use. The National Library of Medicine and the U.S.    
  20.  *  Government have not placed any restriction on its use or reproduction.  
  21.  *                                                                          
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy  
  23.  *  and reliability of the software and data, the NLM and the U.S.          
  24.  *  Government do not and cannot warrant the performance or results that    
  25.  *  may be obtained by using this software or data. The NLM and the U.S.    
  26.  *  Government disclaim all warranties, express or implied, including       
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.                                                                
  29.  *                                                                          
  30.  *  Please cite the author in any work or product based on this material.   
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Author:  Vladimir Soussov
  35.  *   
  36.  * File Description:  Pot of pointers implementation
  37.  *
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include <dbapi/driver/util/pointer_pot.hpp>
  41. #include <string.h>
  42. BEGIN_NCBI_SCOPE
  43. void CQuickSortStack::Push(int i1, int i2)
  44. {
  45.     if (m_NofItems >= m_NofRooms) {
  46.         m_NofRooms *= 2;
  47.         int* p = new int[m_NofRooms];
  48.         memcpy(p, m_Items, m_NofItems * sizeof(int));
  49.         delete[] m_Items;
  50.         m_Items = p;
  51.     }
  52.     m_Items[m_NofItems++] = i2;
  53.     m_Items[m_NofItems++] = i1;
  54. }
  55. void CPointerPot::Add(const TPotItem item, int check_4_unique)
  56. {
  57.     if ( check_4_unique ) {
  58.         for (int i = 0;  i < m_NofItems;  i++) {
  59.             if (m_Items[i] == item)
  60.                 return;
  61.         }
  62.     }
  63.     
  64.     if (m_NofItems >= m_NofRooms) {
  65.         m_NofRooms += m_NofRooms / 2 + 2;
  66.         TPotItem* n_pot = new TPotItem[m_NofRooms];
  67.         memcpy(n_pot, m_Items, m_NofItems * sizeof(TPotItem));
  68.         delete[] m_Items;
  69.         m_Items = n_pot;
  70.     }
  71.     m_Items[m_NofItems++] = item;
  72. }
  73. void CPointerPot::Remove(int n)
  74. {
  75.     if (n >= 0  &&  n < m_NofItems) {
  76.         if (n != (--m_NofItems)) {
  77.             memmove(&m_Items[n], &m_Items[n+1],
  78.                     (m_NofItems - n) * sizeof(TPotItem));
  79.         }
  80.     }
  81. }
  82. void CPointerPot::Remove(TPotItem item)
  83. {
  84.     for (int i = 0;  i < m_NofItems;  i++) {
  85.         if (m_Items[i] == item) {
  86.             // we've found it
  87.             if (i != (--m_NofItems)) {
  88.                 memmove(&m_Items[i], &m_Items[i+1],
  89.                         (m_NofItems - i) * sizeof(TPotItem));
  90.             }
  91.             i--;
  92.         }
  93.     }    
  94. }
  95. static const int kSmallArraySize = 14;
  96. void CPointerPot::x_SimpleSort(TPotItem* arr, int nof_items, FPotCompare cf)
  97. {
  98.     for (bool need_cont = true;  need_cont; ) {
  99.         need_cont = false;
  100.         for (int i = 1;  i < nof_items;  i++) {
  101.             if ((*cf)(arr[i-1], arr[i]) <= 0)
  102.                 continue;
  103.             TPotItem t = arr[i-1];
  104.             arr[i-1]   = arr[i];
  105.             arr[i]     = t;
  106.             need_cont = true;
  107.         }
  108.     }
  109. }
  110. void CPointerPot::Sort(FPotCompare cf)
  111. {
  112.     if (m_NofItems <= kSmallArraySize) {
  113.         x_SimpleSort(m_Items, m_NofItems, cf);
  114.         return;
  115.     }
  116.     CQuickSortStack qs(32);
  117.     int l_bnd, r_bnd;
  118.     qs.Push(0, m_NofItems - 1);
  119.     while ( qs.Pop(&l_bnd, &r_bnd) ) {
  120.         int m = r_bnd - l_bnd;
  121.         if (m < 1)
  122.             continue;
  123.         if (m == 1) {
  124.             if ((*cf)(m_Items[l_bnd], m_Items[r_bnd]) > 0) {
  125.                 TPotItem t     = m_Items[l_bnd];
  126.                 m_Items[l_bnd] = m_Items[r_bnd];
  127.                 m_Items[r_bnd] = t;
  128.             }
  129.             continue;
  130.         }
  131.         if (m <= kSmallArraySize) {
  132.             x_SimpleSort(&m_Items[l_bnd], m + 1, cf);
  133.             continue;
  134.         }
  135.         TPotItem itm = m_Items[r_bnd];
  136.         int      l   = l_bnd - 1;
  137.         int      r   = r_bnd;
  138.         for (;;) {
  139.             while ((*cf)(m_Items[++l], itm) < 0   &&  l < r_bnd)
  140.                 continue;
  141.             while ((*cf)(m_Items[--r], itm) >= 0  &&  r > l_bnd)
  142.                 continue;
  143.             if (l < r) {
  144.                 TPotItem t = m_Items[l];
  145.                 m_Items[l] = m_Items[r];
  146.                 m_Items[r] = t;
  147.             }
  148.             else {
  149.                 m_Items[r_bnd] = m_Items[l];
  150.                 m_Items[l] = itm;
  151.                 qs.Push(l_bnd, l-1);
  152.                 qs.Push(l+1, r_bnd);
  153.                 break;
  154.             }
  155.         }
  156.     }
  157. }
  158. CPointerPot& CPointerPot::operator= (CPointerPot& pot)
  159. {
  160.     if (m_NofRooms < pot.m_NofItems) {
  161.         delete[] m_Items;
  162.         m_NofRooms = pot.m_NofItems;
  163.         m_Items = new TPotItem[m_NofRooms];
  164.     }
  165.     m_NofItems = pot.m_NofItems;
  166.     if (m_NofItems > 0) {
  167.         memcpy(m_Items, pot.m_Items, m_NofItems * sizeof(TPotItem));
  168.     }
  169.     return *this;
  170. }
  171. END_NCBI_SCOPE
  172. /*
  173.  * ===========================================================================
  174.  * $Log: pointer_pot.cpp,v $
  175.  * Revision 1000.1  2004/06/01 19:19:22  gouriano
  176.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  177.  *
  178.  * Revision 1.3  2004/05/17 21:11:38  gorelenk
  179.  * Added include of PCH ncbi_pch.hpp
  180.  *
  181.  * Revision 1.2  2001/11/06 17:59:53  lavr
  182.  * Formatted uniformly as the rest of the library
  183.  *
  184.  * Revision 1.1  2001/09/21 23:40:00  vakatov
  185.  * -----  Initial (draft) revision.  -----
  186.  * This is a major revamp (by Denis Vakatov, with help from Vladimir Soussov)
  187.  * of the DBAPI "driver" libs originally written by Vladimir Soussov.
  188.  * The revamp involved massive code shuffling and grooming, numerous local
  189.  * API redesigns, adding comments and incorporating DBAPI to the C++ Toolkit.
  190.  *
  191.  * ===========================================================================
  192.  */
  193. #if 0
  194. #include <stdlib.h>
  195. #include <stdio.h>
  196. #include <time.h>
  197. USING_NCBI_SCOPE;
  198. int my_cmp(TPotItem i1, TPotItem i2)
  199. {
  200.     return (int) i1 - (int) i2;
  201. }
  202. int main(int argc, char* argv[])
  203. {
  204.     CPointerPot pot(32000);
  205.     int i, j, k;
  206.     TPotItem itm;
  207.     clock_t t1, t2;
  208.     for (i = 0;  i < 164000;  i++) {
  209.         itm = rand();
  210.         pot.Add(itm);
  211.     }
  212.     t1= clock();
  213.     pot.Sort(my_cmp);
  214.     t2= clock();
  215.     printf("done in %ldn", (long)(t2 - t1));
  216.     for (i=0;  i < 31900;  i+= 500) {
  217.         for (j = i;  j < i+10;  j++) {
  218.             k = (int) pot.get(j);
  219.             printf("%dt", k);
  220.         }
  221.         printf("n");
  222.     }
  223. }
  224. #endif