Java Im not sure how to implement this code can someone help

Java

I\'m not sure how to implement this code can someone help me / guide me? thank you

(Updated with PrefixMap interface included at the bottom of the code).

import java.util.List;
import java.util.Map;

public class Storage implements PrefixMap {
  
   private Map keys;
   private Map> prefixes;

    public Storage() {
       // TODO Initialise your maps
   }
   /*
   * How many keys are stored in the map
   */
   @Override
   public int size() {
       // TODO Implement this, then remove this comment
       return 0;
   }
  
  
   @Override
   public boolean isEmpty() {
       // TODO Implement this, then remove this comment
       return false;
   }
  
   /*
   * Get the value corresponding to the key (or null if the key is not found)
   * if the key contains any character other than A,C,G,T, throw MalformedKeyException
   * if the key is null, throw IllegalArgumentException
   */
   @Override
   public String get(String key) {
       // TODO Implement this, then remove this comment
       return null;
   }
  
   /*
   * Insert the value into the data structure, using the given key. If the key
   * already existed, replace and return the old value (otherwise return null)
   * if the key contains any character other than A,C,G,T, throw MalformedKeyException
   * if the key or value is null, throw IllegalArgumentException
   */
   @Override
   public String put(String key, String value) {
       // TODO Implement this, then remove this comment
       return null;
   }
  
   /*
   * Remove the value corresponding to the given key from the data structure,
   * if it exists. Return the old value, or null if no value was found.
   * if the key contains any character other than A,C,G,T, throw MalformedKeyException
   * if the key is null, throw IllegalArgumentException
   */
   @Override
   public String remove(String key) {
       // TODO Implement this, then remove this comment
       return null;
   }
  
  
   /*
   * return the number of keys which start with the given prefix if the prefix
   * contains any character other than A,C,G,T, throw MalformedKeyException
   * if the prefix is null, throw IllegalArgumentException
   */
   @Override
   public int countKeysMatchingPrefix(String prefix) {
       // TODO Implement this, then remove this comment
       return 0;
   }
  
  
   /*
   * return the collection of keys which start with the given prefix if the
   * prefix contains any character other than A,C,G,T, throw MalformedKeyException
   * if the prefix is null, throw IllegalArgumentException
   */
   @Override
   public List getKeysMatchingPrefix(String prefix) {
       // TODO Implement this, then remove this comment
       return null;
   }
     
   /*
   * Return the number of unique prefixes
   * e.g. if the tree stores keys GAT, GATTC, GATTACA, this method will return 8
   * because the possible prefixes are G, GA, GAT, GATT, GATTC, GATTA, GATTAC, GATTACA
   */
   @Override
   public int countPrefixes() {
       // TODO Implement this, then remove this comment
       return 0;
   }
  
  
  
   /*
   * Return the sum of the lengths of all keys
   * e.g. if the tree stores keys GAT, GATTC, GATTACA, this method will return 15
   */
   @Override
   public int sumKeyLengths() {
       // TODO Implement this, then remove this comment
       return 0;
   }
  
}

import java.util.List;

public interface PrefixMap {

   public boolean isEmpty();

   /*
   * How many keys are stored in the map
   */
   public int size();
  
   /*
   * Get the value corresponding to the key (or null if the key is not found)
   * if the key contains any character other than A,C,G,T, throw MalformedKeyException
   * if the key is null, throw IllegalArgumentException
   */
   public String get(String key);

   /*
   * Insert the value into the data structure, using the given key. If the key
   * already existed, replace and return the old value (otherwise return null)
   * if the key contains any character other than A,C,G,T, throw MalformedKeyException
   * if the key or value is null, throw IllegalArgumentException
   */
   public String put(String key, String value);

   /*
   * Remove the value corresponding to the given key from the data structure,
   * if it exists. Return the old value, or null if no value was found.
   * if the key contains any character other than A,C,G,T, throw MalformedKeyException
   * if the key is null, throw IllegalArgumentException
   */
   public String remove(String key);

   /*
   * return the number of keys which start with the given prefix if the prefix
   * contains any character other than A,C,G,T, throw MalformedKeyException
   * if the prefix is null, throw IllegalArgumentException
   */
   public int countKeysMatchingPrefix(String prefix);

   /*
   * return the collection of keys which start with the given prefix if the
   * prefix contains any character other than A,C,G,T, throw MalformedKeyException
   * if the prefix is null, throw IllegalArgumentException
   */
   public List<String> getKeysMatchingPrefix(String prefix);
  
   /*
   * Return the number of unique prefixes
   * e.g. if the tree stores keys GAT, GATTC, GATTACA, this method will return 8
   * because the possible prefixes are G, GA, GAT, GATT, GATTC, GATTA, GATTAC, GATTACA
   */
   public int countPrefixes();
      
   /*
   * Return the sum of the lengths of all keys
   * e.g. if the tree stores keys GAT, GATTC, GATTACA, this method will return 15
   */
   public int sumKeyLengths();

}

Solution

import java.util.List;
import java.util.Map;

public class Storage implements PrefixMap {
  
   private Map keys;
   private Map> prefixes;

    public Storage() {
       // TODO Initialise your maps
   }
   /*
   * How many keys are stored in the map
   */
   @Override
   public int size() {
       // TODO Implement this, then remove this comment
       return 0;
   }
  
  
   @Override
   public boolean isEmpty() {
       // TODO Implement this, then remove this comment
       return false;
   }
  
   /*
   * Get the value corresponding to the key (or null if the key is not found)
   * if the key contains any character other than A,C,G,T, throw MalformedKeyException
   * if the key is null, throw IllegalArgumentException
   */
   @Override
   public String get(String key) {
       // TODO Implement this, then remove this comment
       return null;
   }
  
   /*
   * Insert the value into the data structure, using the given key. If the key
   * already existed, replace and return the old value (otherwise return null)
   * if the key contains any character other than A,C,G,T, throw MalformedKeyException
   * if the key or value is null, throw IllegalArgumentException
   */
   @Override
   public String put(String key, String value) {
       // TODO Implement this, then remove this comment
       return null;
   }
  
   /*
   * Remove the value corresponding to the given key from the data structure,
   * if it exists. Return the old value, or null if no value was found.
   * if the key contains any character other than A,C,G,T, throw MalformedKeyException
   * if the key is null, throw IllegalArgumentException
   */
   @Override
   public String remove(String key) {
       // TODO Implement this, then remove this comment
       return null;
   }
  
  
   /*
   * return the number of keys which start with the given prefix if the prefix
   * contains any character other than A,C,G,T, throw MalformedKeyException
   * if the prefix is null, throw IllegalArgumentException
   */
   @Override
   public int countKeysMatchingPrefix(String prefix) {
       // TODO Implement this, then remove this comment
       return 0;
   }
  
  
   /*
   * return the collection of keys which start with the given prefix if the
   * prefix contains any character other than A,C,G,T, throw MalformedKeyException
   * if the prefix is null, throw IllegalArgumentException
   */
   @Override
   public List getKeysMatchingPrefix(String prefix) {
       // TODO Implement this, then remove this comment
       return null;
   }
     
   /*
   * Return the number of unique prefixes
   * e.g. if the tree stores keys GAT, GATTC, GATTACA, this method will return 8
   * because the possible prefixes are G, GA, GAT, GATT, GATTC, GATTA, GATTAC, GATTACA
   */
   @Override
   public int countPrefixes() {
       // TODO Implement this, then remove this comment
       return 0;
   }
  
  
  
   /*
   * Return the sum of the lengths of all keys
   * e.g. if the tree stores keys GAT, GATTC, GATTACA, this method will return 15
   */
   @Override
   public int sumKeyLengths() {
       // TODO Implement this, then remove this comment
       return 0;
   }
  
}

import java.util.List;

public interface PrefixMap {

   public boolean isEmpty();

   /*
   * How many keys are stored in the map
   */
   public int size();
  
   /*
   * Get the value corresponding to the key (or null if the key is not found)
   * if the key contains any character other than A,C,G,T, throw MalformedKeyException
   * if the key is null, throw IllegalArgumentException
   */
   public String get(String key);

   /*
   * Insert the value into the data structure, using the given key. If the key
   * already existed, replace and return the old value (otherwise return null)
   * if the key contains any character other than A,C,G,T, throw MalformedKeyException
   * if the key or value is null, throw IllegalArgumentException
   */
   public String put(String key, String value);

   /*
   * Remove the value corresponding to the given key from the data structure,
   * if it exists. Return the old value, or null if no value was found.
   * if the key contains any character other than A,C,G,T, throw MalformedKeyException
   * if the key is null, throw IllegalArgumentException
   */
   public String remove(String key);

   /*
   * return the number of keys which start with the given prefix if the prefix
   * contains any character other than A,C,G,T, throw MalformedKeyException
   * if the prefix is null, throw IllegalArgumentException
   */
   public int countKeysMatchingPrefix(String prefix);

   /*
   * return the collection of keys which start with the given prefix if the
   * prefix contains any character other than A,C,G,T, throw MalformedKeyException
   * if the prefix is null, throw IllegalArgumentException
   */
   public List<String> getKeysMatchingPrefix(String prefix);
  
   /*
   * Return the number of unique prefixes
   * e.g. if the tree stores keys GAT, GATTC, GATTACA, this method will return 8
   * because the possible prefixes are G, GA, GAT, GATT, GATTC, GATTA, GATTAC, GATTACA
   */
   public int countPrefixes();
      
   /*
   * Return the sum of the lengths of all keys
   * e.g. if the tree stores keys GAT, GATTC, GATTACA, this method will return 15
   */
   public int sumKeyLengths();

}

Java I\'m not sure how to implement this code can someone help me / guide me? thank you (Updated with PrefixMap interface included at the bottom of the code). i
Java I\'m not sure how to implement this code can someone help me / guide me? thank you (Updated with PrefixMap interface included at the bottom of the code). i
Java I\'m not sure how to implement this code can someone help me / guide me? thank you (Updated with PrefixMap interface included at the bottom of the code). i
Java I\'m not sure how to implement this code can someone help me / guide me? thank you (Updated with PrefixMap interface included at the bottom of the code). i
Java I\'m not sure how to implement this code can someone help me / guide me? thank you (Updated with PrefixMap interface included at the bottom of the code). i
Java I\'m not sure how to implement this code can someone help me / guide me? thank you (Updated with PrefixMap interface included at the bottom of the code). i

Get Help Now

Submit a Take Down Notice

Tutor
Tutor: Dr Jack
Most rated tutor on our site