A two dimensional Vector : Auto Growth Array « Collections Data Structure « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Collections Data Structure » Auto Growth ArrayScreenshots 
A two dimensional Vector
     
//** Copyright Statement ***************************************************
//The Salmon Open Framework for Internet Applications (SOFIA)
// Copyright (C) 1999 - 2002, Salmon LLC
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License version 2
// as published by the Free Software Foundation;
// 
// 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.
// 
// 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.
// 
// For more information please visit http://www.salmonllc.com
//** End Copyright Statement ***************************************************


/////////////////////////
//$Archive: /JADE/SourceCode/com/salmonllc/util/Vector2D.java $
//$Author: Dan $ 
//$Revision: 15 $ 
//$Modtime: 10/30/02 2:59p $ 
/////////////////////////

import java.util.*;

/**
 * This class is a two dimensional Vector. It contains rows and columns that can expand as necessary.
 */
public class Vector2D implements java.io.Serializable
{
  Vector _rows = new Vector();
  int _columnCapacity = 5;
  int _columnCount;
  int _columnSize;
  int _rowSize;
/**
 * Constructs an empty 2 Dimensional vector.
 */
public Vector2D() {
  super();
}
/**
 * This method adds a specified number of columns to the vector
 @param The Number of colums to add.
 */
public void addColumns(int noColumns)
{
  if ((noColumns + _columnCount>= _columnCapacity)
  {
    _columnCapacity = noColumns + _columnCount + _columnCapacity;
  }
  for (int i = 0; i < _rows.size(); i++)
  {
    Object[] tgt = new Object[_columnCapacity];
    Object[] src = (Object[]) _rows.elementAt(i);
    System.arraycopy(src, 0, tgt, 0, _columnCount);
    _rows.setElementAt(tgt, i);
  }
  _columnCount += noColumns;
}
/**
 * This method adds a specified number of rows to the vector
 @param The Number of rows to add.
 */

public void addRows(int noRows)
{
  for (int i = 0; i < noRows; i++)
  {
    Object[] o = new Object[_columnCapacity];
    _rows.addElement(o);
  }
}
/**
 * This method returns the object at row and column..
 */
public Object elementAt(int index) {
  if (index < || index >= size()) 
    return null;

  int row = index / _columnCount;
  int column = index % _columnCount;
  
  Object[] o = (Object[]) _rows.elementAt(row);
  return o[column];
    
}
/**
 * This method returns the object at row and column..
 */
public Object elementAt(int row, int column) {
  if (row < || row >= _rows.size()) 
    return null;
  else if (column  < || column >= _columnCount)
    return null;

  Object[] o = (Object[]) _rows.elementAt(row);
  return o[column];
    
}
public void exportData(boolean includeHeaders, java.io.PrintWriter p)
{
  StringBuffer work = new StringBuffer();
  Object data = null;
  //
  work.append("<TABLE BORDER = \"1\">");
  // include headers
  if (includeHeaders)
  {
    work.append("<TR>");
    work.append("<TH>");
    work.append("ROW_NUM");
    work.append("</TH>");
    for (int i = 0; i < getColumnCount(); i++)
    {
      work.append("<TH>");
      work.append("COL_" + i);
      work.append("</TH>");
    }
    work.append("</TR>\n");
  }
  for (int rows = 0; rows < getRowCount(); rows++)
  {
    work.append("<TR>");
    work.append("<TD>ROW_" + rows);
    work.append("</TD>");
    for (int cols = 0; cols < getColumnCount(); cols++)
    {
      work.append("<TD>");
      data = elementAt(rows, cols);
      if (data == null)
      {
        work.append("&nbsp;");
      }
      else
      {
        work.append(data.toString());
      }
      work.append("</TD>");
    }
    work.append("</TR>\n");
  }
  work.append("</TABLE>");
  p.println(work.toString());
  p.flush();
}
/**
 * This method returns the number of columns in the 2D Vector
 */
public int getColumnCount() {
  return _columnCount;
}
/**
 * This method returns the number of columns that are occupied with data in the 2D Vector
 */
public int getColumnSize()
{
  return _columnSize + 1;
}
/**
 * This method returns the number of columns in the 2DVector
 */
public int getRowCount() {
  return _rows.size();
}
/**
 * This method returns the number of rows that are occupied with data in the 2D Vector
 */
public int getRowSize()
{
  return _rowSize + 1;
}
/**
 * This method returns the index of the item at row and column or -1 if the element doesn't exist.
 */
public int indexAt(int row, int column) {
  if (row < || row >= _rows.size()) 
    return -1;
  else if (column  < || column >= _columnCount)
    return -1;

  return (row * _columnCount+ column;
  
}
/**
 * This method inserts a row immediately before the specified row
 */
public void insertRow(int row) {
  if (row < 0)
    return;

  Object[] o = new Object[_columnCapacity];

  if (row > _rows.size())
    _rows.addElement(o);
  else
    _rows.insertElementAt(o,row);

}
/**
 * This method inserts a row immediately before the specified row
 */
public void removeAll()
{
  _rows.removeAllElements();
  _columnCapacity = 5;
  _columnCount = 0;
  _columnSize = 0;
  _rowSize = 0;
}
/**
 * This method removes a row from the 2DVector
 @param row The row to remove.
 */
public void removeRow(int row)
{
  if (row < || row > _rows.size())
    return;
  _rows.removeElementAt(row);
  _rowSize = _rowSize - 1;
}
/**
 * This method sets the value of a cell in the 2D Vector
 @param row The row position
 @param column The row position
 @param in The object to set.
 */
public void setElementAt(int row, int column, Object in)
{
  if (row < || row >= _rows.size())
    return;
  else
    if (column < || column >= _columnCount)
      return;
  Object[] o = (Object[]) _rows.elementAt(row);
  o[column= in;

  // this is to get only the occupied rows and columns
  if (_rowSize < row)
    _rowSize = row;
  if (_columnSize < column)
    _columnSize = column;
}
/**
 * This method sets the value of a cell in the 2D Vector
 @param in The object to set.
 @param index The position to put it at
 */
public void setElementAt(int index,Object in){

  if (index < || index >= size()) 
    return;

  int row = index / _columnCount;
  int column = index % _columnCount;
  
  Object[] o = (Object[]) _rows.elementAt(row);
  o[column= in;

  // this is to get only the occupied rows and columns
  if (_rowSize < row)
    _rowSize = row;
  if (_columnSize < column)
    _columnSize = column;

}
/**
 * This method was created in VisualAge.
 @return int
 */
public int size() {
  return (_rows.size() * _columnCount);
}
/**
 * Returns a string representation of the 2D vector.
 */
public String toString()
{

  StringBuffer work = new StringBuffer();
  Object data = null;
  boolean commaFlag = false;
  for (int rows = 0; rows < getRowCount(); rows++)
  {
    work.append("[");
    for (int cols = 0; cols < getColumnCount(); cols++)
    {
      if (commaFlag == true)
      {
        work.append(",");
      }

      data = elementAt(rows, cols);
      if (data == null)
      {
        work.append("NULL");
      }
      else
      {
        work.append(data.toString());
      }
      commaFlag = true;
    }
    work.append("]\n");
    commaFlag = false;
  }
  return work.toString();
}
}

   
    
    
    
    
  
Related examples in the same category
1. Growable int[]
2. Your own auto-growth Array
3. Long Vector
4. Int Vector (from java-objects-database)
5. ArrayList of int primitives
6. ArrayList of long primitives
7. ArrayList of short primitives
8. ArrayList of double primitives
9. ArrayList of boolean primitives
10. ArrayList of char primitives
11. ArrayList of byte primitives
12. Growable String array with type specific access methods.
13. Auto Size Array
14. Dynamic Int Array
15. Dynamic Long Array
16. Int Array
17. Int Array List
18. ArrayList of float primitives
19. Fast Array
20. Extensible vector of bytes
21. Int Vector
22. Lazy List creation based on ArrayList
23. Append the given Object to the given array
24. Adds all the elements of the given arrays into a new array.
25. Simple object pool
26. A variable length Double Array: expanding and contracting its internal storage array as elements are added and removed.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.