Here you can find the source of print_bigrams(HashSet
public static void print_bigrams(HashSet<String> bigrams)
//package com.java2s; /**/*from ww w . java 2s . c om*/ * This software is released under the University of Illinois/Research and Academic Use License. See * the LICENSE file in the root folder for details. Copyright (c) 2016 * * Developed by: The Cognitive Computation Group University of Illinois at Urbana-Champaign * http://cogcomp.cs.illinois.edu/ */ import java.util.*; public class Main { public static void print_bigrams(HashSet<String> bigrams) { for (String bi : bigrams) System.out.println(bi); } }