All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jasima.core.simulation.EventHeap Maven / Gradle / Ivy

/*******************************************************************************
 * This file is part of jasima, v1.3, the Java simulator for manufacturing and 
 * logistics.
 *  
 * Copyright (c) 2015 		jasima solutions UG
 * Copyright (c) 2010-2015 Torsten Hildebrandt and jasima contributors
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 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 Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see .
 *******************************************************************************/
package jasima.core.simulation;

import jasima.core.simulation.Simulation.EventQueue;

import java.io.Serializable;

/**
 * An implementation of {@link jasima.core.simulation.Simulation.EventQueue}
 * using an array-based heap.
 * 
 * @author Torsten Hildebrandt, 2012-08-30
 * @version 
 *          "$Id: EventHeap.java 753 2015-07-27 15:29:49Z [email protected] $"
 */
public final class EventHeap implements EventQueue, Serializable {
	private static final long serialVersionUID = -7578258752027946114L;

	private Event[] nodes; // the tree nodes, packed into an array
	private int count = 0; // number of used slots
	private boolean invalidRoot = false;

	/**
	 * Create an event heap with an initial capacity of 103.
	 */
	public EventHeap() {
		this(103);
	}

	/**
	 * Create an event heap with the given capacity.
	 * 
	 * @exception IllegalArgumentException
	 *                if capacity less or equal to zero
	 */
	public EventHeap(int capacity) throws IllegalArgumentException {
		if (capacity <= 0)
			throw new IllegalArgumentException();
		nodes = new Event[capacity];
	}

	// indexes of heap parents and children
	private final int parent(int k) {
		return (k - 1) >>> 1;
		// return (k - 1) / 2;
	}

	private final int left(int k) {
		return (k << 1) + 1;
		// return 2 * k + 1;
	}

	private final int right(int k) {
		return (k << 1) + 2;
		// return 2 * (k + 1);
	}

	/**
	 * insert an element, resize if necessary
	 */
	@Override
	public void insert(Event x) {
		if (count >= nodes.length) {
			setCapacity(3 * nodes.length / 2 + 1);
		}

		final Event[] nodes = this.nodes;

		if (invalidRoot) {
			// move new element to root
			nodes[0] = x;
			++count;

			sinkRoot();
		} else {
			// bubble up: normal heap insertion if more than one insert() in
			// succession
			int k = count;
			++count;
			while (k > 0) {
				int par = parent(k);
				if (x.compareTo(nodes[par]) < 0) {
					nodes[k] = nodes[par];
					k = par;
				} else
					break;
			}
			nodes[k] = x;
		}
	}

	/**
	 * Return and remove least element, or null if empty.
	 */
	@Override
	public Event extract() {
		final Event[] nodes = this.nodes;

		// extract() called more than once in succession?
		if (invalidRoot) {
			// move largest element to root
			nodes[0] = nodes[count];
			nodes[count] = null;

			sinkRoot();
		}

		Event least = nodes[0];
		nodes[0] = null;

		--count;

		invalidRoot = true;

		return least;
	}

	private void sinkRoot() {
		final int count = this.count;
		final Event[] nodes = this.nodes;
		invalidRoot = false;

		int k = 0;
		Event x = nodes[k];
		int l;
		while ((l = left(k)) < count) {
			int r = right(k);
			int child = (r >= count || nodes[l].compareTo(nodes[r]) < 0) ? l
					: r;
			if (x.compareTo(nodes[child]) > 0) {
				nodes[k] = nodes[child];
				k = child;
			} else
				break;
		}
		nodes[k] = x;
	}

	/** Return least element without removing it, or null if empty * */
	public Event peek() {
		if (count > 0)
			return nodes[0];
		else
			return null;
	}

	/** Return number of elements * */
	public int size() {
		return count;
	}

	/** remove all elements * */
	public void clear() {
		for (int i = 0; i < count; ++i)
			nodes[i] = null;
		count = 0;
	}

	public int capacity() {
		return nodes.length;
	}

	public void setCapacity(int newCap) {
		Event[] newnodes = new Event[newCap];
		System.arraycopy(nodes, 0, newnodes, 0, count);
		nodes = newnodes;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy