Sunday, March 31, 2013

Collection Comparison



package com.swain.cell;

import java.util.Collections;
import java.util.Set;
import java.util.TreeSet;

public class Comparison {
       public static void main(String[] args) {
              String[] coins = { "Penny", "nickel", "dime", "Quarter", "dollar" };
              Set set = new TreeSet();
              for (int i = 0; i < coins.length; i++)
                     set.add(coins[i]);
              System.out.println(Collections.min(set));
              System.out.println(Collections.min(set, String.CASE_INSENSITIVE_ORDER));
              System.out.println("--");
              System.out.println(Collections.max(set));
              System.out.println(Collections.max(set, String.CASE_INSENSITIVE_ORDER));
       }

}

No comments:

Post a Comment

How ChatGPT can Benefit Coding: Your Guide to Leveraging an AI Language Model

 Introduction: Hello, coders! Welcome to this blog post on how ChatGPT, an AI language model, can benefit your coding skills and projects. A...