home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / gnu / g__lib / oxpset.ccp < prev    next >
Encoding:
Text File  |  1993-07-23  |  5.5 KB  |  283 lines

  1. // This may look like C code, but it is really -*- C++ -*-
  2. /* 
  3. Copyright (C) 1988 Free Software Foundation
  4.     written by Doug Lea (dl@rocky.oswego.edu)
  5.  
  6. This file is part of GNU CC.
  7.  
  8. GNU CC is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY.  No author or distributor
  10. accepts responsibility to anyone for the consequences of using it
  11. or for whether it serves any particular purpose or works at all,
  12. unless he says so in writing.  Refer to the GNU CC General Public
  13. License for full details.
  14.  
  15. Everyone is granted permission to copy, modify and redistribute
  16. GNU CC, but only under the conditions described in the
  17. GNU CC General Public License.   A copy of this license is
  18. supposed to have been given to you along with GNU CC so you
  19. can know your rights and responsibilities.  It should be in a
  20. file named COPYING.  Among other things, the copyright notice
  21. and this notice must be preserved on all copies.  
  22. */
  23.  
  24. #include "<T>.OXPSet.h"
  25.  
  26.  
  27. Pix <T>OXPSet::seek(<T&> item)
  28. {
  29.   int l = p.low();
  30.   int h = p.high();
  31.   while (l <= h)
  32.   {
  33.     int mid = (l + h) / 2;
  34.     int cmp = <T>CMP(item, p[mid]);
  35.     if (cmp == 0)
  36.       return p.index_to_Pix(mid);
  37.     else if (cmp < 0)
  38.       h = mid - 1;
  39.     else
  40.       l = mid + 1;
  41.   }
  42.   return 0;
  43. }
  44.  
  45. Pix <T>OXPSet::add(<T&> item)
  46. {
  47.   if (count == 0) 
  48.   {
  49.     ++count;
  50.     return p.index_to_Pix(p.add_high(item));
  51.   }
  52.   int l = p.low();
  53.   int h = p.high();
  54.   while (l <= h)
  55.   {
  56.     int mid = (l + h) / 2;
  57.     int cmp = <T>CMP(item, p[mid]);
  58.     if (cmp == 0)
  59.       return p.index_to_Pix(mid);
  60.     else if (cmp < 0)
  61.         h = mid - 1;
  62.     else
  63.       l = mid + 1;
  64.   }
  65.   // add on whichever side is shortest
  66.   ++count;
  67.   if (l == p.fence())
  68.     return p.index_to_Pix(p.add_high(item));
  69.   else if (l == p.low())
  70.     return p.index_to_Pix(p.add_low(item));
  71.   else 
  72.   {
  73.     if (p.fence() - l < l - p.low())
  74.     {
  75.       h = p.add_high(p.high_element());
  76.       for (int i = h - 1; i > l; --i) p[i] = p[i-1];
  77.     }
  78.     else
  79.     {
  80.       --l;
  81.       h = p.add_low(p.low_element());
  82.       for (int i = h + 1; i < l; ++i) p[i] = p[i+1];
  83.     }
  84.     p[l] = item;
  85.     return p.index_to_Pix(l);
  86.   }
  87. }
  88.  
  89. void <T>OXPSet::del(<T&> item)
  90. {
  91.   int l = p.low();
  92.   int h = p.high();
  93.   while (l <= h)
  94.   {
  95.     int mid = (l + h) / 2;
  96.     int cmp = <T>CMP(item, p[mid]);
  97.     if (cmp == 0)
  98.     {
  99.       --count;
  100.       if (p.high() - mid < mid - p.low())
  101.       {
  102.         for (int i = mid; i < p.high(); ++i) p[i] = p[i+1];
  103.         p.del_high();
  104.       }
  105.       else
  106.       {
  107.         for (int i = mid; i > p.low(); --i) p[i] = p[i-1];
  108.         p.del_low();
  109.       }
  110.       return;
  111.     }
  112.     else if (cmp < 0)
  113.       h = mid - 1;
  114.     else
  115.       l = mid + 1;
  116.   }
  117. }
  118.  
  119. int <T>OXPSet::operator <= (<T>OXPSet& b)
  120. {
  121.   if (count > b.count) return 0;
  122.   int i = p.low();
  123.   int j = b.p.low();
  124.   for (;;)
  125.   {
  126.     if (i >= p.fence())
  127.       return 1;
  128.     else if (j >= b.p.fence()) 
  129.       return 0;
  130.     int cmp = <T>CMP(p[i], b.p[j]);
  131.     if (cmp == 0)
  132.     {
  133.       ++i; ++j;
  134.     }
  135.     else if (cmp < 0)
  136.       return 0;
  137.     else
  138.       ++j;
  139.   }
  140. }
  141.  
  142. int <T>OXPSet::operator == (<T>OXPSet& b)
  143. {
  144.   int n = count;
  145.   if (n != b.count) return 0;
  146.   if (n == 0) return 1;
  147.   int i = p.low();
  148.   int j = b.p.low();
  149.   while (n-- > 0) if (!<T>EQ(p[i++], b.p[j++])) return 0;
  150.   return 1;
  151. }
  152.  
  153.  
  154. void <T>OXPSet::operator |= (<T>OXPSet& b)
  155. {
  156.   if (&b == this || b.count == 0)
  157.     return;
  158.   else if (b.count <= 2) // small b -- just add
  159.     for (Pix i = b.first(); i; b.next(i)) add(b(i));
  160.   else
  161.   {
  162.     // strategy: merge into top of p, simultaneously killing old bottom
  163.     int oldfence = p.fence();
  164.     int i = p.low();
  165.     int j = b.p.low();
  166.     for (;;)
  167.     {
  168.       if (i == oldfence)
  169.       {
  170.         while (j < b.p.fence()) p.add_high(b.p[j++]);
  171.         break;
  172.       }
  173.       else if (j == b.p.fence())
  174.       {
  175.         while (i++ < oldfence) 
  176.         {
  177.           p.add_high(p.low_element());
  178.           p.del_low();
  179.         }
  180.         break;
  181.       }
  182.       int cmp = <T>CMP(p[i], b.p[j]);
  183.       if (cmp <= 0)
  184.       {
  185.         ++i;
  186.         if (cmp == 0)  ++j;
  187.         p.add_high(p.low_element());
  188.         p.del_low();
  189.       }
  190.       else
  191.         p.add_high(b.p[j++]);
  192.     }
  193.     count = p.length();
  194.   }
  195. }
  196.  
  197.  
  198.  
  199. void <T>OXPSet::operator -= (<T>OXPSet& b)
  200. {
  201.   if (&b == this)
  202.     clear();
  203.   else if (count != 0 && b.count != 0)
  204.   {
  205.     int i = p.low();
  206.     int k = i;
  207.     int j = b.p.low();
  208.     int oldfence = p.fence();
  209.     for (;;)
  210.     {
  211.       if (i >= oldfence)
  212.         break;
  213.       else if (j >= b.p.fence())
  214.       {
  215.         if (k != i)
  216.           while (i < oldfence) p[k++] = p[i++];
  217.         else
  218.           k = oldfence;
  219.         break;
  220.       }
  221.       int cmp = <T>CMP(p[i], b.p[j]);
  222.       if (cmp == 0)
  223.       {
  224.         ++i; ++j;
  225.       }
  226.       else if (cmp < 0)
  227.       {
  228.         if (k != i) p[k] = p[i];
  229.         ++i; ++k;
  230.       }
  231.       else
  232.         j++;
  233.     }
  234.     while (k++ < oldfence)
  235.     {
  236.       --count;
  237.       p.del_high();
  238.     }
  239.   }
  240. }
  241.  
  242. void <T>OXPSet::operator &= (<T>OXPSet& b)
  243. {
  244.   if (b.count == 0)
  245.     clear();
  246.   else if (&b != this && count != 0)
  247.   {
  248.     int i = p.low();
  249.     int k = i;
  250.     int j = b.p.low();
  251.     int oldfence = p.fence();
  252.     for (;;)
  253.     {
  254.       if (i >= oldfence || j >= b.p.fence())
  255.         break;
  256.       int cmp = <T>CMP(p[i], b.p[j]);
  257.       if (cmp == 0)
  258.       {
  259.         if (k != i) p[k] = p[i];
  260.         ++i; ++k; ++j;
  261.       }
  262.       else if (cmp < 0)
  263.         ++i;
  264.       else
  265.         ++j;
  266.     }
  267.     while (k++ < oldfence)
  268.     {
  269.       --count;
  270.       p.del_high();
  271.     }
  272.   }
  273. }
  274.  
  275. int <T>OXPSet::OK()
  276. {
  277.   int v = p.OK();
  278.   v &= count == p.length();
  279.   for (int i = p.low(); i < p.high(); ++i) v &= <T>CMP(p[i], p[i+1]) < 0;
  280.   if (!v) error("invariant failure");
  281.   return v;
  282. }
  283.