public class IntSparseVector extends Object implements org.apache.hadoop.io.Writable
Constructor and Description |
---|
IntSparseVector()
Create a new vector with default size.
|
IntSparseVector(int size)
Create a new vector with given size.
|
Modifier and Type | Method and Description |
---|---|
void |
add(IntSparseVector other)
Add the vector specified.
|
void |
clear()
Clear the contents of the vector.
|
int |
get(int i)
Get a particular entry of the vector.
|
void |
readFields(DataInput in) |
void |
set(int i,
int value)
Set the given value to the entry specified.
|
void |
write(DataOutput out) |
public IntSparseVector()
public IntSparseVector(int size)
size
- the size of the vectorpublic int get(int i)
i
- the entrypublic void set(int i, int value)
i
- the entryvalue
- the value to set to the entrypublic void clear()
public void add(IntSparseVector other)
other
- the vector to add.public void write(DataOutput out) throws IOException
write
in interface org.apache.hadoop.io.Writable
IOException
public void readFields(DataInput in) throws IOException
readFields
in interface org.apache.hadoop.io.Writable
IOException
Copyright © 2011-2020 The Apache Software Foundation. All Rights Reserved.