public class FreqTab {
  int[] array;

  // constructor
  public FreqTab () {
    array = new int [26];
  }

  // incrementFreq: finds the element of the array that corresponds
  // the the given character and increments it
  public void incrementFreq (char c) {

    // fill me in

  }

  // getFreq: finds the element of the array that corresponds
  // the the given character and returns it
  public int getFreq (char c) {

    // fill me in

  }

  // print: prints the contents of the frequency table
  public void print () {

    // fill me in

  }
}

  
