You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
2.7 KiB
86 lines
2.7 KiB
20 years ago
|
// disorderHeap.java
|
||
|
// -----------------------
|
||
17 years ago
|
// (C) by Michael Peter Christen; mc@yacy.net
|
||
20 years ago
|
// first published on http://www.anomic.de
|
||
|
// Frankfurt, Germany, 2004
|
||
14 years ago
|
//
|
||
|
// $LastChangedDate$
|
||
|
// $LastChangedRevision$
|
||
|
// $LastChangedBy$
|
||
20 years ago
|
//
|
||
|
// 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.
|
||
|
//
|
||
|
// 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
|
||
|
|
||
12 years ago
|
package net.yacy.utils;
|
||
20 years ago
|
|
||
17 years ago
|
import java.io.Serializable;
|
||
20 years ago
|
import java.util.LinkedList;
|
||
20 years ago
|
|
||
17 years ago
|
public class disorderHeap implements Serializable {
|
||
|
/**
|
||
|
* generated with svn4743 on 2008-04-28
|
||
|
*/
|
||
|
private static final long serialVersionUID = -1576632540870640019L;
|
||
20 years ago
|
|
||
17 years ago
|
LinkedList<String> list;
|
||
20 years ago
|
|
||
|
public disorderHeap() {
|
||
17 years ago
|
list = new LinkedList<String>();
|
||
20 years ago
|
}
|
||
|
|
||
17 years ago
|
public disorderHeap(final int numbers) {
|
||
17 years ago
|
// create a disorder heap with numbers in it
|
||
|
// the numbers are 0..numbers-1
|
||
|
this();
|
||
|
for (int i = 0; i < numbers; i++) add(Integer.toString(i));
|
||
20 years ago
|
}
|
||
|
|
||
17 years ago
|
public synchronized void add(final String element) {
|
||
17 years ago
|
// add one element into the list at an arbitrary position
|
||
17 years ago
|
final int pos = (int) ((System.currentTimeMillis() / 7) % (list.size() + 1));
|
||
17 years ago
|
list.add(pos, element);
|
||
20 years ago
|
}
|
||
|
|
||
17 years ago
|
public synchronized String remove() {
|
||
15 years ago
|
if (list.isEmpty()) return null;
|
||
17 years ago
|
final int pos = (int) ((System.currentTimeMillis() / 13) % list.size());
|
||
17 years ago
|
return list.remove(pos);
|
||
20 years ago
|
}
|
||
|
|
||
|
public synchronized int number() {
|
||
17 years ago
|
final String n = this.remove();
|
||
17 years ago
|
if (n == null) return -1;
|
||
|
try {
|
||
|
return Integer.parseInt(n);
|
||
17 years ago
|
} catch (final Exception e) {
|
||
17 years ago
|
return -1;
|
||
|
}
|
||
20 years ago
|
}
|
||
|
|
||
|
public synchronized int size() {
|
||
17 years ago
|
return list.size();
|
||
20 years ago
|
}
|
||
|
|
||
15 years ago
|
public synchronized boolean isEmpty() {
|
||
|
return list.isEmpty();
|
||
|
}
|
||
20 years ago
|
|
||
17 years ago
|
public static void main(final String[] args) {
|
||
|
final disorderHeap ul = new disorderHeap();
|
||
17 years ago
|
for (int i = 0; i < args.length; i++) ul.add(args[i]);
|
||
|
for (int i = 0; i < args.length; i++) System.out.print(ul.remove() + " ");
|
||
|
System.out.println();
|
||
20 years ago
|
}
|
||
|
|
||
|
}
|