定义栈
对栈的基本操作只有push进栈和pop出栈,栈的实现可以有数组实现的顺序栈和
java提供的具体实现类Stack
public class Stackextends Vector
E push(E item)
E pop() 弹出栈顶数据
E peek() 查看栈顶数据,并不会执行弹出操作int search(Object o) 查找o对象的下标值
public interface Stack
{
//栈是否为空 记得在方法上添加注释
boolean isEmpty();
// data元素入栈
void push(T data);
//返回栈顶元素,未出栈
T peek();
//出栈,返回栈顶元素,同时从栈中移除该元素
T pop();
}
//顺序栈
public class SeqStackimplements Stack {
// 栈顶指针,-1代表空栈
private int top = -1;
// 容量大小默认为10
private static final int capacity = 10;
// 存放元素的数组
private T[] array;
//当前栈中存储的元素个数
private int size;
public SeqStack() {
this(capacity);
}
@SuppressWarnings("unchecked")
public SeqStack(int capacity) {
array = (T[]) new Object[capacity];
}
public int size() {
return size;
}
public boolean isEmpty() {
return this.top == -1;
}
// 添加元素,从栈顶(数组尾部)插入
public void push(T data) {
// 判断容量是否充足
if (array.length == size)
ensureCapacity(size * 2 + 1);// 扩容
// 从栈顶添加元素
array[++top] = data;
size++;
}
private void ensureCapacity(int capacity) {
// 如果需要拓展的容量比现在数组的容量还小,则无需扩容
if (capacity < size)
return;
T[] old = array;
array = (T[]) new Object[capacity];
//for (int i=0; i// array[i]=old[i];
System.arraycopy(old, 0, array, 0, size);
}
// 获取栈顶元素的值,不删除
public T peek() {
if (isEmpty())
throw new EmptyStackException();
return array[top];
}
// 从栈顶(顺序表尾部)删除
public T pop() {
if (isEmpty())
throw new EmptyStackException();
size--;
return array[top--];
}
}
根据实现方式不同分为顺序队列和链式队列。
enqueue(String item) 入队操作
dequeue() 出队操作
循环队列:基于数组的队列实现中,当tail=items.length时需要搬移大量的数据,就会导致
入队操作的性能降低,可以使用循环队列解决
典型算法:约瑟夫环
队列接口 Queue
public interface Queueextends Collection {
boolean add(E e);向队列中添加数据,阈值为64,Double size if small; else grow by 50%
boolean offer(E e);
E remove(); 删除队列头部的数据
E poll();
E element();获取队列中的数据
E peek();
}
PriorityQueue是AbstractQueue的实现类,优先级队列的元素根据自然排序或者在构造函数时期提供Comparator来排序,具体根据构造器判断。PriorityQueue不允许null元素
- 队列的头在某种意义上是指定顺序的最后一个元素。队列查找操作poll、remove、peek和element访问队列头部元素
- 优先级队列是无限制的,但是具有内部capacity,用于控制在队列中存储元素的数组大小- 该类以及迭代器实现了Collection、Iterator接口的所有可选方法,这个迭代器提供了iterator()方法不能保证以任何特定顺序遍历优先级队列的元素。如果需要有序遍历使用Arrays.sort(queue.toArray())
- 注意这个实现不是线程安全的,多线程不应该并发访问PriorityQueue实例,如果有某个线程修改了队列的话,使用线程安全的类PriorityBlockingQueue
PriorityQueue是优先队列,作用是保证每次取出的元素都是队列中权值最小的,这里涉及到了大小关系,元素大小的评判可以通过元素自身的自然顺序(使用默认的比较器),也可以通过构造时传入的比较器。
Java中PriorityQueue实现了Queue接口,不允许放入null元素;其通过堆实现,具体说是通过完全二叉树complete binary tree)实现的小顶堆(任意一个非叶子节点的权值,都不大于其左右子节点的权值),也就意味着可以通过数组来作为PriorityQueue的底层实现。
- import java.util.PriorityQueue;
-
- public class TestPriorityQueue {
- public static void main(String[] args) {
- PriorityQueue
queue = new PriorityQueue<>(); - // PriorityQueue
queue=new PriorityQueue<>((obj1,obj2)->{ - // return -1*obj1.getName().compareTo(obj2.getName());
- // });
- // queue.add(null);
- for (int i = 0; i < 10; i++) {
- A1 tmp = new A1(i + 0L, "name_" + (9 - i));
- queue.offer(tmp);
- }
- while(!queue.isEmpty())
- System.out.println(queue.poll());
- }
- }
-
- class A1 implements Comparable
{ - private Long id;
- private String name;
-
- public A1(Long id, String name) {
- super();
- this.id = id;
- this.name = name;
- }
-
- public Long getId() {
- return id;
- }
-
- public void setId(Long id) {
- this.id = id;
- }
-
- public String getName() {
- return name;
- }
-
- public void setName(String name) {
- this.name = name;
- }
-
- @Override
- public String toString() {
- return "A1 [id=" + id + ", name=" + name + "]";
- }
-
- @Override
- public int compareTo(A1 o) {
- return this.name.compareTo(o.name);
- }
-
- }