Search in sources :

Example 1 with TreeBag

use of org.apache.commons.collections4.bag.TreeBag in project useful-java-links by Vedenin.

the class ApacheSynchronizedSortedBagTest method main.

public static void main(String[] args) {
    // Parse text to separate words
    String INPUT_TEXT = "Hello World! Hello All! Hi World!";
    // Create Multiset
    Bag bag = SynchronizedSortedBag.synchronizedBag(new TreeBag(Arrays.asList(INPUT_TEXT.split(" "))));
    // Print count words
    // print [1:All!,2:Hello,1:Hi,2:World!]- in natural (alphabet) order
    System.out.println(bag);
    // Print all unique words
    // print [All!, Hello, Hi, World!]- in natural (alphabet) order
    System.out.println(bag.uniqueSet());
    // Print count occurrences of words
    // print 2
    System.out.println("Hello = " + bag.getCount("Hello"));
    // print 2
    System.out.println("World = " + bag.getCount("World!"));
    // print 1
    System.out.println("All = " + bag.getCount("All!"));
    // print 1
    System.out.println("Hi = " + bag.getCount("Hi"));
    // print 0
    System.out.println("Empty = " + bag.getCount("Empty"));
    // Print count all words
    //print 6
    System.out.println(bag.size());
    // Print count unique words
    //print 4
    System.out.println(bag.uniqueSet().size());
}
Also used : TreeBag(org.apache.commons.collections4.bag.TreeBag) SynchronizedSortedBag(org.apache.commons.collections4.bag.SynchronizedSortedBag) TreeBag(org.apache.commons.collections4.bag.TreeBag) Bag(org.apache.commons.collections4.Bag)

Example 2 with TreeBag

use of org.apache.commons.collections4.bag.TreeBag in project useful-java-links by Vedenin.

the class ApacheSynchronizedSortedBag method main.

public static void main(String[] args) {
    // Parse text to separate words
    String INPUT_TEXT = "Hello World! Hello All! Hi World!";
    // Create Multiset
    Bag bag = SynchronizedSortedBag.synchronizedBag(new TreeBag(Arrays.asList(INPUT_TEXT.split(" "))));
    // Print count words
    // print [1:All!,2:Hello,1:Hi,2:World!]- in natural (alphabet) order
    System.out.println(bag);
    // Print all unique words
    // print [All!, Hello, Hi, World!]- in natural (alphabet) order
    System.out.println(bag.uniqueSet());
    // Print count occurrences of words
    // print 2
    System.out.println("Hello = " + bag.getCount("Hello"));
    // print 2
    System.out.println("World = " + bag.getCount("World!"));
    // print 1
    System.out.println("All = " + bag.getCount("All!"));
    // print 1
    System.out.println("Hi = " + bag.getCount("Hi"));
    // print 0
    System.out.println("Empty = " + bag.getCount("Empty"));
    // Print count all words
    //print 6
    System.out.println(bag.size());
    // Print count unique words
    //print 4
    System.out.println(bag.uniqueSet().size());
}
Also used : TreeBag(org.apache.commons.collections4.bag.TreeBag) SynchronizedSortedBag(org.apache.commons.collections4.bag.SynchronizedSortedBag) TreeBag(org.apache.commons.collections4.bag.TreeBag) Bag(org.apache.commons.collections4.Bag)

Example 3 with TreeBag

use of org.apache.commons.collections4.bag.TreeBag in project useful-java-links by Vedenin.

the class ApacheTreeBag method main.

public static void main(String[] args) {
    // Parse text to separate words
    String INPUT_TEXT = "Hello World! Hello All! Hi World!";
    // Create Multiset
    Bag bag = new TreeBag(Arrays.asList(INPUT_TEXT.split(" ")));
    // Print count words
    // print [1:All!,2:Hello,1:Hi,2:World!]- in natural (alphabet) order
    System.out.println(bag);
    // Print all unique words
    // print [All!, Hello, Hi, World!]- in natural (alphabet) order
    System.out.println(bag.uniqueSet());
    // Print count occurrences of words
    // print 2
    System.out.println("Hello = " + bag.getCount("Hello"));
    // print 2
    System.out.println("World = " + bag.getCount("World!"));
    // print 1
    System.out.println("All = " + bag.getCount("All!"));
    // print 1
    System.out.println("Hi = " + bag.getCount("Hi"));
    // print 0
    System.out.println("Empty = " + bag.getCount("Empty"));
    // Print count all words
    //print 6
    System.out.println(bag.size());
    // Print count unique words
    //print 4
    System.out.println(bag.uniqueSet().size());
}
Also used : TreeBag(org.apache.commons.collections4.bag.TreeBag) TreeBag(org.apache.commons.collections4.bag.TreeBag) Bag(org.apache.commons.collections4.Bag)

Example 4 with TreeBag

use of org.apache.commons.collections4.bag.TreeBag in project useful-java-links by Vedenin.

the class ApacheTreeBagTest method main.

public static void main(String[] args) {
    // Parse text to separate words
    String INPUT_TEXT = "Hello World! Hello All! Hi World!";
    // Create Multiset
    Bag bag = new TreeBag(Arrays.asList(INPUT_TEXT.split(" ")));
    // Print count words
    // print [1:All!,2:Hello,1:Hi,2:World!]- in natural (alphabet) order
    System.out.println(bag);
    // Print all unique words
    // print [All!, Hello, Hi, World!]- in natural (alphabet) order
    System.out.println(bag.uniqueSet());
    // Print count occurrences of words
    // print 2
    System.out.println("Hello = " + bag.getCount("Hello"));
    // print 2
    System.out.println("World = " + bag.getCount("World!"));
    // print 1
    System.out.println("All = " + bag.getCount("All!"));
    // print 1
    System.out.println("Hi = " + bag.getCount("Hi"));
    // print 0
    System.out.println("Empty = " + bag.getCount("Empty"));
    // Print count all words
    //print 6
    System.out.println(bag.size());
    // Print count unique words
    //print 4
    System.out.println(bag.uniqueSet().size());
}
Also used : TreeBag(org.apache.commons.collections4.bag.TreeBag) TreeBag(org.apache.commons.collections4.bag.TreeBag) Bag(org.apache.commons.collections4.Bag)

Aggregations

Bag (org.apache.commons.collections4.Bag)4 TreeBag (org.apache.commons.collections4.bag.TreeBag)4 SynchronizedSortedBag (org.apache.commons.collections4.bag.SynchronizedSortedBag)2