vote up 8 vote down star
3

I'm working on a project, written in Java, which requires that I build a very large 2-D sparse array. Very sparse, if that makes a difference. Anyway: the most crucial aspect for this application is efficency in terms of time (assume loads of memory, though not nearly so unlimited as to allow me to use a standard 2-D array -- the key range is in the billions in both dimensions).

Out of the kajillion cells in the array, there will be several hundred thousand cells which contain an object. I need to be able to modify cell contents VERY quickly.

Anyway: Does anyone know a particularly good library for this purpose? It would have to be Berkeley, LGPL or similar license (no GPL, as the product can't be entirely open-sourced). Or if there's just a very simple way to make a homebrew sparse array object, that'd be fine too.

I'm considering MTJ, but haven't heard any opinions on its quality.

Thanks!! -Dan

flag

5 Answers

vote up 2 vote down check

Maybe Colt is of help. It provides a sparse matrix implementation.

link|flag
vote up 4 vote down

Here is a paper you may be interested in which talks about data structures for matrix computations, including sparse arrays:

http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.13.7544

You can download the paper as PDF or PS. It includes source code, too.

link|flag
nice reference, thanks. – Steve B. Dec 23 '08 at 22:14
vote up 2 vote down

This seems to be simple.

You could use a binary tree of the data using row*maxcolums+column as an index.

To find item, you simply calculate row*maxcolums+column and binary search the tree looking for it, if it's not there, you can return null (it's О(log n) where n is the number of cells which contain an object).

link|flag
vote up 1 vote down

Not the fastest runtime solution probably, but the fastest I could come up with that seems to work. Create an Index class and use it as a key for a SortedMap, like:

	SortedMap<Index, Object> entries = new TreeMap<Index, Object>();
	entries.put(new Index(1, 4), "1-4");
	entries.put(new Index(5555555555l, 767777777777l), "5555555555l-767777777777l");
	System.out.println(entries.size());
	System.out.println(entries.get(new Index(1, 4)));
	System.out.println(entries.get(new Index(5555555555l, 767777777777l)));

My Index class looks like this (with some help from Eclipse code generator).

public static class Index implements Comparable<Index>
{
	private long x;
	private long y;

	public Index(long x, long y)
	{
		super();
		this.x = x;
		this.y = y;
	}

	public int compareTo(Index index)
	{
		long ix = index.x;
		if (ix == x)
		{
			long iy = index.y;
			if (iy == y)
			{
				return 0;
			}
			else if (iy < y)
			{
				return -1;
			}
			else
			{
				return 1;
			}
		}
		else if (ix < x)
		{
			return -1;
		}
		else
		{
			return 1;
		}
	}

	public int hashCode()
	{
		final int PRIME = 31;
		int result = 1;
		result = PRIME * result + (int) (x ^ (x >>> 32));
		result = PRIME * result + (int) (y ^ (y >>> 32));
		return result;
	}

	public boolean equals(Object obj)
	{
		if (this == obj)
			return true;
		if (obj == null)
			return false;
		if (getClass() != obj.getClass())
			return false;
		final Index other = (Index) obj;
		if (x != other.x)
			return false;
		if (y != other.y)
			return false;
		return true;
	}

	public long getX()
	{
		return x;
	}

	public long getY()
	{
		return y;
	}
}
link|flag
vote up 0 vote down

you could just use a nested map although if you need to do matrix calculus on it that might not be the best option

 Map<Integer, Map<integer, Object>> matrix;

maybe instead of object use some tuple for the actual data so you can work with it easier after extraction, something like:

class Tuple<T extends yourDataObject> {
  public final int x;
  public final int y;
  public final T object;
}

class Matrix {
  private final Map<Integer, Map<interger, Tupple>> data = new...;

 void add(int x, int y, Object object) {
     data.get(x).put(new Tupple(x,y,object);
 }
}


//etc

null check etc omitted for brevity

link|flag
Prefer long iso int for range "in the billions". Nesting Maps when "there will be several hundred thousand cells which contain an object" is a lot of overhead. Storing the coordinates in Tupple is redundant and increases maintenance for operations. No abstraction for index: not flexible/extensible. – eljenso Dec 26 '08 at 19:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.