Using TreeSet to sort pure numeric strings

Source: Internet
Author: User

Import Java.util.Iterator;
Import Java.util.TreeSet;

/*
* Sort the numbers in a string
* String str = "10,2,11,1,34,101,32";
*/
public class Demo7 {

public static void Main (string[] args) {
String str = "10 2 11 1 34 10132";
TreeSet ts = new TreeSet ();
string[] arr = Str.split ("");
for (int i=0; i<arr.length; i++) {
Ts.add (Integer.parseint (Arr[i]));//Convert to shaping, the elements have a natural order
}
SYSTEM.OUT.PRINTLN (TS);
Using iterators to traverse stitching strings
Iterator iter = Ts.iterator ();
String str1 = "";
while (Iter.hasnext ()) {
str1+= (Iter.next () + "");
}
System.out.println (STR1);
}
}

Key notes:

1. Split the string using split of the String class;

2. Use the parseint of the shaping class to convert the string type into shaping;

3. Create a TreeSet object using the natural ordering function of the TreeSet class;

Using TreeSet to sort pure numeric strings

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.