数据结构队列的应用 _JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > 数据结构队列的应用

数据结构队列的应用

 2011/9/29 8:03:02  wustrive_2008  http://wustrive-2008.iteye.com  我要评论(0)
  • 摘要:packagecom.guxia;importjava.util.*;publicclassTest2{publicstaticvoidmain(String[]args){Queue<Integer>queue=newPriorityQueue<Integer>(10,newComparator<Integer>(){publicintcompare(Integeri,Integerj){//TODOAuto
  • 标签:

?

package com.guxia;

import java.util.*;

public class Test2 {
	public static void main(String[] args) {
		Queue<Integer> queue = new PriorityQueue<Integer>(10,
				new Comparator<Integer>(){
			public int compare(Integer i,Integer j) {
				// TODO Auto-generated method stub
				int result = i%2-j%2;
				if(result==0)
					result = i-j;
				return result;
			}
		});
		for(int i=0;i<10;i++){
			queue.offer(i);
		}
		for(int i=0;i<10;i++){
			System.out.println(queue.poll());
		}
	}
}
输出结果:0 2 4 6 8 1 3 5 7 9
  • 相关文章
发表评论
用户名: 匿名