欢迎光临
我们一直在努力

数据结构――栈、队列和树(Java)-JSP教程,Java技巧及代码

建站超值云服务器,限时71元/月

数据结构――栈、队列和树

开发者可以使用数组与链表的变体来建立更为复杂的数据结构。本节探究三种这样的数据结构:栈、队列与树。当给出算法时,出于简练,直接用java代码。

栈是这样一个数据结构,其数据项的插入和删除(获取)都只能在称为栈顶的一端完成。因为最后插入的数据项就是最先要删除的数据项,开发者往往将栈称为lilo(last-in, first-out)数据结构。

数据项压入(插入)或者弹出(删除或取得)栈顶。图13示例了一个有三个string数据项的栈,每个数据项压入栈顶。

图13 有三个以压入string数据项的栈

如图13所示,栈在内存中是向下建起来的。对于每个数据项的压入,之前栈顶的数据项以及其下面的所有数据项都得向下移,当要从栈中弹出一个数据项时,取得栈顶元素并将其从栈中删除。

栈在许多程序设计环境下非常有用。两个非常普通的环境:

·栈保存返回地址:当代码调用一个方法时,调用指令后的第一条指令的地址压入当前线程的方法调用栈的顶端。当执行被调用方法的返回指令时,该地址从栈顶弹出,然后从该地址处继续执行。如果一个方法调用了另一个方法,栈的lifo行为模式确保了第二个方法的返回指令将执行转移到第一个方法,而第一个方法的返回指令能够将执行转移到调用第一个方法的代码的代码。结果就是,栈代表被调用方法“记住了”返回地址。

·栈保存每个被调用方法的参数和局部变量:当调用一个方法时,jvm在靠近返回地址处分配内存存储所有被调用方法的参数和局部变量。如果方法是个实例方法,存储在栈中的其中一个参数是当前对象的引用this。

一般可以使用一维数组或单链表实现一个栈。如果使用一维数组,一个常命名为top的整型变量保存栈顶数据项的索引。类似地,一个常命名为top的引用变量引用单链表情形下的栈顶节点(含有栈顶数据项)。

根据javas collections api中发现的体系结构建模栈的实现。这个实现由一个stack接口,arraystack和linkedliststack实现类以及fullstackexception支持类组成。为了便于发布,将这些类打包在com.javajeff.cds包中,其中的cds表示复杂数据结构。清单8给出了stack接口。

清单8. stack.java

// stack.java

package com.javajeff.cds;

public interface stack

{

boolean isempty ();

object peek ();

void push (object o);

object pop ();

}

stack的四个方法分别是确定栈是否为空,获得栈顶数据项而没有删除,任意数据项入栈,获得并删除栈顶元素。除了一个具体于实现的构造方法之外,你的程序只需调用这些方法就足够了。

清单9 给出了stack的基于一维数组的实现:

清单9 arraystack.java

// arraystack.java

package com.javajeff.cds;

public class arraystack implements stack

{

private int top = -1;

private object[] stack;

public arraystack(int maxelements)

{

stack = new object[maxelements];

}

public boolean imempty()

{

return top == -1;

}

public object peek()

{

if (top < 0)

throw new java.util.emptystackexception();

return stack[top];

}

public void push(object o)

{

if (top == stack.length – 1)

throw new fullstackexception();

stack[++top] == 0;

}

public object pop()

{

if (top < 0)

throw new java.util.emptystackexception();

return stack[top–];

}

}

arraystack表明,栈由私有整型索引top和一维数组的引用变量stack组成。top标识stack中的栈顶数据项,初始化为-1以表示栈为空。当要创建一个arraystack对象时使用一个说明元素最大数目的整型值来调用public arraystack(int maxelements)。试图从一个空栈的栈顶弹出一个数据项会使得pop()函数里抛出一个java.util.emptystackexception异常对象。与之相似,如果试图在栈中压入多于maxelements的数据项会使得push(object o)函数抛出fullstackexception对象,其代码见清单10:

清单10 fullstackexception.java

package com.javajeff.cds;

public class fullstackexception extends runtimeexception

{

}

为了与emptystackexception相对称,fullstackexception扩展了runtimeexception。这样,你就不必在一个方法的throws从句里加上fullstackexception。

清单11 给出了stack的基于单链表的实现:

清单11. linkedliststack.java

// linkedliststack.java

package com.javajeff.cds;

public class linkedliststack implements stack

{

private static class node

{

object o;

node next;

}

private node top = null;

public boolean imempty()

{

return top == null;

}

public object peek()

{

if (top == null)

throw new java.util.emptystackexception();

return top.o;

}

public void push(object o)

{

node temp = new node();

temp.o = o;

temp.next = top;

top = temp;

}

public object pop()

{

if (top == null)

throw new java.util.emptystackexception();

object o = top.o;

top = top.next;

return o;

}

}

linkedliststack表明栈由一个私有的顶层嵌套类node和一个私有引用变量top构成,引用变量top初始化为null表示一个空栈。相对于一维数组实现的栈,linkedliststack并不需要一个构造器,因为它能够随着数据项的压入动态扩展。这样,void push(object o)就不需要抛出fullstackexception对象。然而,object pop()还是需要检查栈是否为空的,这可能会导致可抛的emptystackexception对象。

因为我们已经看到了构成栈这一数据结构实现的接口和三个类,我们就来示例一下栈的使用。

清单 12. stackdemo.java

// stackdemo.java

import com.javajeff.cds.*;

class stackdemo

{

public static void main(string[] args)

{

system.out.println("arraystack demo");

system.out.println("—————");

stackdemo(new arraystack(5));

system.out.println("linkedliststack demo");

system.out.println("———————");

stackdemo(new linkedliststack());

}

statci void stackdemo(stack s)

{

system.out.println("pushing \"hello\"");

s.push("hello");

system.out.println("pushing \" world\"");

s.push("world");

system.out.println("pushing stackdemo object");

s.push(new stackdemo());

system.out.println("pushing character object");

s.push(new character("a"));

try

{

system.out.println("pushing \"one last item\"");

s.push("one last item");

} catch(fullstackexception e)

{

system.out.println ("one push too many");

}

system.out.println();

while (!s.imempty())

system.out.println(s.pop());

try

{

s.pop();

}

catch(java.util.emptystackexception e)

{

system.out.println();

}

system.out.println();

}

}

当运行stackdemo时产生如下输出:

arraystack demo

—————

pushing "hello"

pushing "world"

pushing stackdemo object

pushing character object

pushing thread object

pushing "one last item"

one push too many

thread[a,5,main]

c

stackdemo@7182c1

world

hello

one pop too many

linkedliststack demo

——————–

pushing "hello"

pushing "world"

pushing stackdemo object

pushing character object

pushing thread object

pushing "one last item"

one last item

thread[a,5,main]

c

stackdemo@cac268

world

hello

one pop too many

队列

队列是这样一种数据结构,数据项的插入在一端(队列尾),而数据项的取得或删除则在另一端(队列头)。因为第一个插入的数据项也是第一个取得或删除的数据项,开发者普遍地将队列称为fifo数据结构。

开发者经常使用到两种队列:线性队列和循环队列。在两种队列中,数据项都是在队列尾插入,然后移向队列头,并从队列头删除或获取。图14 说明了线性以及循环队列。

图14有四个已插入整型数据项的线性队列和七个数据项的循环队列

图14的线性队列存储四个数据项,整数1是第一个。队列已满,不能存储另外的整型数据项,因为rear已经指到了最右面(最后)的狭槽。front指向的狭槽为空,因为它涉及到线性队列的行为。起先,front和rear都指向最左边的狭槽,表示队列为空。为了存储整数1,rear指向右边的下一个狭槽,并将1存储到那个狭槽中。而当获取或删除整数1时,front向右前进一个狭槽。

图14的循环队列存储有七个整型数据项,以整数1开始。该队列为满并且不能存储别的整型数据,直至front沿顺时针方向前进一个狭槽。与线性队列相似,front指向的狭槽为空也是涉及到循环队列的行为。最初,front和rear指向同一个狭槽,表示队列为空。对于每个数据项插入,rear前进一个狭槽,对于每个数据项的删除,front前进一个狭槽。

队列在很多程序设计环境下非常有用。两个常见的情景有:

·线程调度:jvm或一个基本的操作系统会建立多个队列来反应不同的线程优先级。 线程信息会阻塞,因为给定优先级的所有线程存储在相关队列中。

·打印任务: 因为打印机的速度比计算机慢许多,操作系统将其打印任务分派给其打印子系统,打印子系统就会将这些任务插入到一个打印队列中。队列中的第一个任务先打印,最后一个任务最后打印。

开发者经常使用一维数组实现一个队列。然而,如果需要同时存在多个队列的话,或者因为优先级的原因队列需要在队列尾以外的地方插入,开发者可能会选择双链表来实现。在此,我们使用因为数组来实现线性和循环队列。让我们从清单13的queue接口开始:

// queue.java

package com.javajeff.cds;

public interface queue

{

void insert (object o);

boolean isempty ();

boolean isfull ();

object remove ();

}

queue声明了四个方法,分别用于在队列中存储数据项,确定队列是否为空,确定队列是否为满,由队列获取或删除数据项。

清单14 给出了基于一维数组的线性队列的实现:

清单14. arraylinearqueue.java

// arraylinearqueue.java

package com.javajeff.cds;

public class arraylinearqueue implements queue

{

private int front = -1, rear = -1;

private object[] queue;

public arraylinearqueue(int maxelements)

{

queue = new object[maxelements];

}

public void insert(object o)

{

if (rear == queue.length – 1)

throw new fullqueueexception();

queue[++rear] = o;

}

public boolean isempty()

{

return front == rear;

}

public boolean isfull()

{

return rear == queue.length – 1;

}

public object remove()

{

if (front == rear)

throw new emptyqueueexception();

return queue[++front];

}

}

arraylinearqueue表明队列由front,rear和queue变量组成。其中front和rear初始化为-1表示队列为空。与arraystack的构造器一样,使用一个说明元素最大数目的整型值调用public arraylinearqueue(int maxelements)以创建一个arraylinearqueue对象。

当rear说明的是数组的最后一个元素时,arraylinearqueues insert(object o)方法会抛出fullqueueexception异常对象。fullqueueexception的代码如清单15所示:

清单 15. fullqueueexception.java

// fullqueueexception.java

package com.javajeff.cds;

public class fullqueueexception extends runtimeexception

{

}

当front等于rear时,arraylinearqueues remove()方法会抛出emptyqueueexception对象。emptyqueueexception的代码如下:

清单16. emptyqueueexception.java

// emptyqueueexception.java

package com.javajeff.cds;

public class emptyqueueexception extends runtimeexception

{

}

清单17 给出了基于一维数组的循环队列的实现:

listing 17. arraycircularqueue.java

// arraycircularqueue.java

package com.javajeff.cds;

public class arraycircularqueue implements queue

{

private int front = 0, rear = 0;

private object[] queue;

public arraycircularqueue(int maxelements)

{

queue = new object[maxelements];

}

public void insert(object o)

{

int temp = rear;

rear = (reart + 1) % queue.length;

if (front == rear)

{

rear = temp;

throw new fullqueueexception();

}

queue[rear] = o;

}

public boolean isempty()

{

return front == rear;

}

public boolean isfull()

{

return ((rear + 1) % queue.length) == front;

}

public object remove()

{

if (front == rear)

throw new emptyqueueexception();

front = (front + 1) % queue.length;

return queue[front];

}

}

从私有域变量和构造器来看,arraycircularqueue表明了一个与arraylinearqueue类似的实现。insert(object o)方法令人注意的地方是它在使得rear指向下一个狭槽之前先保存了当前的值。这样,如果循环队列已满,那么rear在fullqueueexception异常对象抛出之前恢复为原值。rear值的还原是必要的,否则front等于rear,后续调用remove()会导致emptyqueueexception异常(即使循环队列不为空)。

在研究了组成队列这一数据结构的基于一维数组的实现的接口和各种类之后,考虑清单18,这是一个说明线性和循环队列的应用程序。

清单 18. queuedemo.java

// queuedemo.java

import com.javajeff.cds.*;

class queuedemo

{

public static void main (string [] args)

{

system.out.println ("arraylinearqueue demo");

system.out.println ("———————");

queuedemo (new arraylinearqueue (5));

system.out.println ("arraycircularqueue demo");

system.out.println ("———————");

queuedemo (new arraycircularqueue (6)); // need one more slot because

// of empty slot in circular

// implementation

}

static void queuedemo (queue q)

{

system.out.println ("is empty = " + q.isempty ());

system.out.println ("is full = " + q.isfull ());

system.out.println ("inserting \"this\"");

q.insert ("this");

system.out.println ("inserting \"is\"");

q.insert ("is");

system.out.println ("inserting \"a\"");

q.insert ("a");

system.out.println ("inserting \"sentence\"");

q.insert ("sentence");

system.out.println ("inserting \".\"");

q.insert (".");

try

{

system.out.println ("inserting \"one last item\"");

q.insert ("one last item");

}

catch (fullqueueexception e)

{

system.out.println ("one insert too many");

system.out.println ("is empty = " + q.isempty ());

system.out.println ("is full = " + q.isfull ());

}

system.out.println ();

while (!q.isempty ())

system.out.println (q.remove () + " [is empty = " + q.isempty () +

", is full = " + q.isfull () + "]");

try

{

q.remove ();

}

catch (emptyqueueexception e)

{

system.out.println ("one remove too many");

}

system.out.println ();

}

}

运行queuedemo得到如下输出:

arraylinearqueue demo

———————

is empty = true

is full = false

inserting "this"

inserting "is"

inserting "a"

inserting "sentence"

inserting "."

inserting "one last item"

one insert too many

is empty = false

is full = true

this [is empty = false, is full = true]

is [is empty = false, is full = true]

a [is empty = false, is full = true]

sentence [is empty = false, is full = true]

. [is empty = true, is full = true]

one remove too many

arraycircularqueue demo

———————

is empty = true

is full = false

inserting "this"

inserting "is"

inserting "a"

inserting "sentence"

inserting "."

inserting "one last item"

one insert too many

is empty = false

is full = true

this [is empty = false, is full = false]

is [is empty = false, is full = false]

a [is empty = false, is full = false]

sentence [is empty = false, is full = false]

. [is empty = true, is full = false]

one remove too many

树是有穷节点的组,其中有一个节点作为根,根下面的其余节点以层次化方式组织。引用其下节点的节点是父节点,类似,由上层节点引用的节点是孩子节点。没有孩子的节点是叶子节点。一个节点可能同时是父节点和子节点。

一个父节点可以引用所需的多个孩子节点。在很多情况下,父节点至多只能引用两个孩子节点,基于这种节点的树称为二叉树。图13给出了一棵以字母表顺序存储了七个string单词的二叉树。

图15 一颗有七个节点的二叉树

在二叉树或其他类型的树中都是使用递归来插入,删除和遍历节点的。出于简短的目的,我们并不深入研究递归的节点插入,节点删除和树的遍历算法。我们改为用清单19中的一个单词计数程序的源代码来说明递归节点插入和树的遍历。代码中使用节点插入来创建一棵二叉树,其中每个节点包括一个单词和词出现的计数,然后藉由树的中序遍历算法以字母表顺序显示单词及其计数。

listing 19. wc.java

// wc.java

import java.io.*;

class treenode

{

string word; // word being stored.

int count = 1; // count of words seen in text.

treenode left; // left subtree reference.

treenode right; // right subtree reference.

public treenode (string word)

{

this.word = word;

left = right = null;

}

public void insert (string word)

{

int status = this.word.compareto (word);

if (status > 0) // word argument precedes current word

{

// if left-most leaf node reached, then insert new node as

// its left-most leaf node. otherwise, keep searching left.

if (left == null)

left = new treenode (word);

else

left.insert (word);

}

else

if (status < 0) // word argument follows current word

{

// if right-most leaf node reached, then insert new node as

// its right-most leaf node. otherwise, keep searching right.

if (right == null)

right = new treenode (word);

else

right.insert (word);

}

else

this.count++;

}

}

class wc

{

public static void main (string [] args) throws ioexception

{

int ch;

treenode root = null;

// read each character from standard input until a letter

// is read. this letter indicates the start of a word.

while ((ch = system.in.read ()) != -1)

{

// if character is a letter then start of word detected.

if (character.isletter ((char) ch))

{

// create stringbuffer object to hold word letters.

stringbuffer sb = new stringbuffer ();

// place first letter character into stringbuffer object.

sb.append ((char) ch);

// place all subsequent letter characters into stringbuffer

// object.

do

{

ch = system.in.read ();

if (character.isletter ((char) ch))

sb.append ((char) ch);

else

break;

}

while (true);

// insert word into tree.

if (root == null)

root = new treenode (sb.tostring ());

else

root.insert (sb.tostring ());

}

}

display (root);

}

static void display (treenode root)

{

// if either the root node or the current node is null,

// signifying that a leaf node has been reached, return.

if (root == null)

return;

// display all left-most nodes (i.e., nodes whose words

// precede words in the current node).

display (root.left);

// display current nodes word and count.

system.out.println ("word = " + root.word + ", count = " +

root.count);

// display all right-most nodes (i.e., nodes whose words

// follow words in the current node).

display (root.right);

}

}

因为已经有很多注释了,在这儿我们就不讨论代码了。代之,建议你如下运行这个应用程序:要计数文件中的单词数,打开一个包括重定位符<的命令行。例如,发出java wc <wc.java命令来计数文件wc.java中的单词数。那个命令的输出如下:

word = character, count = 2

word = count, count = 2

word = create, count = 1

word = display, count = 3

word = ioexception, count = 1

word = if, count = 4

word = insert, count = 1

word = left, count = 1

word = otherwise, count = 2

word = place, count = 2

word = read, count = 1

word = right, count = 1

word = string, count = 4

word = stringbuffer, count = 5

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 数据结构――栈、队列和树(Java)-JSP教程,Java技巧及代码
分享到: 更多 (0)