Renamed LinkedList to SimplifiedLinkList and moved it from org.thdl.tib.scanner to org.thdl.util. This linked list was implemented because the VM running on handhelds does not include java.util.LinkedList.
This commit is contained in:
parent
d836b850e8
commit
a7a573020f
12 changed files with 65 additions and 50 deletions
125
source/org/thdl/util/SimplifiedLinkedList.java
Normal file
125
source/org/thdl/util/SimplifiedLinkedList.java
Normal file
|
@ -0,0 +1,125 @@
|
|||
/*
|
||||
The contents of this file are subject to the AMP Open Community License
|
||||
Version 1.0 (the "License"); you may not use this file except in compliance
|
||||
with the License. You may obtain a copy of the License on the AMP web site
|
||||
(http://www.tibet.iteso.mx/Guatemala/).
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS" basis,
|
||||
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
||||
License for the specific terms governing rights and limitations under the
|
||||
License.
|
||||
|
||||
The Initial Developer of this software is Andres Montano Pellegrini. Portions
|
||||
created by Andres Montano Pellegrini are Copyright 2001 Andres Montano
|
||||
Pellegrini. All Rights Reserved.
|
||||
|
||||
Contributor(s): ______________________________________.
|
||||
*/
|
||||
|
||||
package org.thdl.util;
|
||||
import java.util.*;
|
||||
|
||||
/** Implementation of a simple dynamic link list. Be careful with word order!
|
||||
Why not just use java.util.LinkedList? It is not supported for the
|
||||
handheld's virtual machine.
|
||||
|
||||
@author Andrés Montano Pellegrini
|
||||
@see Link
|
||||
@see SimplifiedListIterator
|
||||
*/
|
||||
public class SimplifiedLinkedList
|
||||
{
|
||||
protected Link cabeza;
|
||||
public SimplifiedLinkedList()
|
||||
{
|
||||
cabeza=null;
|
||||
}
|
||||
|
||||
private SimplifiedLinkedList(Link cabeza)
|
||||
{
|
||||
this.cabeza = cabeza;
|
||||
}
|
||||
|
||||
public void addLast(Object o)
|
||||
{
|
||||
if (cabeza==null)
|
||||
{
|
||||
cabeza = new Link(o);
|
||||
}
|
||||
else cabeza = cabeza.createPrevious(o);
|
||||
}
|
||||
|
||||
public Object getLast()
|
||||
{
|
||||
if (cabeza==null) return null;
|
||||
else return cabeza.get();
|
||||
}
|
||||
|
||||
public SimplifiedListIterator listIterator()
|
||||
{
|
||||
return new SimplifiedListIterator(cabeza);
|
||||
}
|
||||
|
||||
public SimplifiedListIterator listIterator(int n)
|
||||
{
|
||||
return new SimplifiedListIterator(cabeza, n);
|
||||
}
|
||||
|
||||
public boolean isEmpty()
|
||||
{
|
||||
return cabeza==null;
|
||||
}
|
||||
|
||||
public boolean contains(Object o)
|
||||
{
|
||||
Link current=cabeza;
|
||||
while (current!=null)
|
||||
{
|
||||
if (current.get().equals(o)) return true;
|
||||
current = current.next();
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public int size()
|
||||
{
|
||||
if (cabeza==null) return 0;
|
||||
return cabeza.size();
|
||||
}
|
||||
|
||||
public SimplifiedLinkedList sort()
|
||||
{
|
||||
return new SimplifiedLinkedList(cabeza.sort());
|
||||
}
|
||||
|
||||
public Object[] toArray()
|
||||
{
|
||||
int n = size();
|
||||
if (n==0) return null;
|
||||
Object array[] = new Object[n];
|
||||
SimplifiedListIterator li = listIterator();
|
||||
while (li.hasNext())
|
||||
{
|
||||
n--;
|
||||
array[n] = li.next();
|
||||
}
|
||||
return array;
|
||||
}
|
||||
|
||||
public String[] toStringArray()
|
||||
{
|
||||
int n = size();
|
||||
if (n==0) return null;
|
||||
Object o;
|
||||
String array[] = new String[n];
|
||||
SimplifiedListIterator li = listIterator();
|
||||
while (li.hasNext())
|
||||
{
|
||||
n--;
|
||||
o = li.next();
|
||||
if (o==null) array[n]=null;
|
||||
else array[n] = o.toString();
|
||||
}
|
||||
return array;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue