Skip to content
Snippets Groups Projects
KeyVector.java 2.17 KiB
Newer Older
tjc's avatar
tjc committed
/* KeyVector.java
 *
 * created: Fri Apr 16 1999
 *
 * This file is part of Artemis
tjc's avatar
tjc committed
 * Copyright (C) 1999  Genome Research Limited
tjc's avatar
tjc committed
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
tjc's avatar
tjc committed
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
tjc's avatar
tjc committed
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 *
 * $Header: //tmp/pathsoft/artemis/uk/ac/sanger/artemis/io/KeyVector.java,v 1.2 2006-08-09 16:35:31 tjc Exp $
tjc's avatar
tjc committed
 */

package uk.ac.sanger.artemis.io;

import uk.ac.sanger.artemis.util.FastVector;

/**
 *  This class implements a Vector of Key objects.
 *
 *  @author Kim Rutherford
 *  @version $Id: KeyVector.java,v 1.2 2006-08-09 16:35:31 tjc Exp $
tjc's avatar
tjc committed
 **/

public class KeyVector extends FastVector
tjc's avatar
tjc committed
{

  public KeyVector ()
tjc's avatar
tjc committed
  {
tjc's avatar
tjc committed
  }
tjc's avatar
tjc committed
  /**
   *  Create a new vector which contains only the given Key.
   **/
  public KeyVector (final Key new_key)
tjc's avatar
tjc committed
  {
    super();
tjc's avatar
tjc committed
    add (new_key);
  }

  /**
   *  Return a new copy of this object.
   **/
  public KeyVector copy ()
tjc's avatar
tjc committed
  {
    final KeyVector new_key_vector = (KeyVector)clone();
tjc's avatar
tjc committed

    return new_key_vector;
  }

  /**
   * Sorts the elements of the vector using a simple O(n^2) selection
   * sort.
   */
  public void mysort()
tjc's avatar
tjc committed
  {
    int smallest;

    for (int i = 0; i < size (); ++i)
tjc's avatar
tjc committed
    {
      //find smallest remaining element
      smallest = i;
      for(int j = i + 1 ; j < size () ; ++j)
tjc's avatar
tjc committed
      {
        if(((Key)get(j)).compareTo( (Key)get(smallest)) < 0)
tjc's avatar
tjc committed
          smallest = j;
      }
      //exchange smallest and i
tjc's avatar
tjc committed
      {
        final Key tmp = (Key)get(i);
        setElementAt (get(smallest), i);
tjc's avatar
tjc committed
        setElementAt (tmp, smallest);
      }
    }
  }

}