TestCyclicIteration.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:2k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. package org.apache.hadoop.util;
  19. import java.util.ArrayList;
  20. import java.util.Arrays;
  21. import java.util.List;
  22. import java.util.Map;
  23. import java.util.NavigableMap;
  24. import java.util.TreeMap;
  25. public class TestCyclicIteration extends junit.framework.TestCase {
  26.   public void testCyclicIteration() throws Exception {
  27.     for(int n = 0; n < 5; n++) {
  28.       checkCyclicIteration(n);
  29.     }
  30.   }
  31.   private static void checkCyclicIteration(int numOfElements) {
  32.     //create a tree map
  33.     final NavigableMap<Integer, Integer> map = new TreeMap<Integer, Integer>();
  34.     final Integer[] integers = new Integer[numOfElements];
  35.     for(int i = 0; i < integers.length; i++) {
  36.       integers[i] = 2*i;
  37.       map.put(integers[i], integers[i]);
  38.     }
  39.     System.out.println("nnintegers=" + Arrays.asList(integers));
  40.     System.out.println("map=" + map);
  41.     //try starting everywhere
  42.     for(int start = -1; start <= 2*integers.length - 1; start++) {
  43.       //get a cyclic iteration
  44.       final List<Integer> iteration = new ArrayList<Integer>(); 
  45.       for(Map.Entry<Integer, Integer> e : new CyclicIteration<Integer, Integer>(map, start)) {
  46.         iteration.add(e.getKey());
  47.       }
  48.       System.out.println("start=" + start + ", iteration=" + iteration);
  49.       
  50.       //verify results
  51.       for(int i = 0; i < integers.length; i++) {
  52.         final int j = ((start+2)/2 + i)%integers.length;
  53.         assertEquals("i=" + i + ", j=" + j, iteration.get(i), integers[j]);
  54.       }
  55.     }
  56.   }
  57. }