How to correctly handle an Exception given the specific constraints











up vote
0
down vote

favorite












Disclaimer: This was an exam question we took and we have already solved it. But my friends and I are not sure if this is the right approach. Here is the question(verbatim) and our solution.



For this problem, you must implement the following methods
String deleteFirst() boolean isEmpty(). This deleteFirst () method removes the node in position 1 of the list and returns the string
contained in that node. The isEmpty() method returns true if there are no items in the list, false otherwise.



If deleteFirst() is called on a list that contains 0 or 1 element, an IllegalStateException must be thrown. A toString method has been provided so you can test your code.
Example. Suppose your list has these values:
["Barca","Inter","Utd"]
After executing deleteFirst, the list should contain these elements (in this order):
["Barca", "Utd"]



Requirements for Problem:




  1. Your code must run correctly for lists containing any number of elements, including an empty list.

  2. No data may be placed in the header node.


  3. IllegalStateException must be thrown when deleteFirst is called on your list when it has only 0 or 1 element.

  4. You must use Java's IllegalStateException class (you must not create your own exception class for this.

  5. You may not introduce any new instance variables or instance methods, and you may not modify the other methods in DoublyLinkedDeleteFirst.

  6. The Node class contained in DoublyLinkedDeleteFirst must not be modified (in particular, no constructor other than the default constructor should be used to construct instances of Node ).

  7. During execution, each Node in your DoublyLinkedDeleteFirst must have correct values for the next and previous Nodes.


  8. There should be no compiler or runtime errors. In particular, no NullPointerException should be thrown during execution.



    public class DoublyLinkedDeleteFirst {



    Node header;

    public DoublyLinkedDeleteFirst() {
    header = new Node();
    }

    //removes the node at position 1 and returns
    //the string contained in that node
    public String deleteFirst() {
    //implement
    Node temp = header;

    try {
    temp = temp.next.next;
    Node deleted = temp;

    temp.previous.next = temp.next;
    temp.next.previous = deleted.previous;
    return deleted.value;
    }catch (NullPointerException e) {
    throw new IllegalStateException();
    }

    }

    public boolean isEmpty() {
    if(header == null)
    return true;
    return false;
    }

    // adds to the end of the list
    public void addLast(String item) {
    Node next = header;
    while (next.next != null) {
    next = next.next;
    }
    Node n = new Node();
    n.value = item;
    next.next = n;
    n.previous = next;

    }

    @Override
    public String toString() {

    StringBuilder sb = new StringBuilder();
    toString(sb, header);
    return sb.toString();

    }

    private void toString(StringBuilder sb, Node n) {
    if (n == null)
    return;
    if (n.value != null)
    sb.append(" " + n.value);
    toString(sb, n.next);
    }

    class Node {
    String value;
    Node next;
    Node previous;

    public String toString() {
    return value == null ? "null" : value;
    }
    }

    public static void main(String args) {
    DoublyLinkedDeleteFirst list = new DoublyLinkedDeleteFirst();
    list.addLast("Inter Millan");
    list.addLast("Barcelona");
    //list.addLast("Manchester United");
    String deleted = list.deleteFirst();
    System.out.println("This item was deleted: " + deleted);
    System.out.println(list);
    }
    }











share|improve this question







New contributor




Andromeda is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
























    up vote
    0
    down vote

    favorite












    Disclaimer: This was an exam question we took and we have already solved it. But my friends and I are not sure if this is the right approach. Here is the question(verbatim) and our solution.



    For this problem, you must implement the following methods
    String deleteFirst() boolean isEmpty(). This deleteFirst () method removes the node in position 1 of the list and returns the string
    contained in that node. The isEmpty() method returns true if there are no items in the list, false otherwise.



    If deleteFirst() is called on a list that contains 0 or 1 element, an IllegalStateException must be thrown. A toString method has been provided so you can test your code.
    Example. Suppose your list has these values:
    ["Barca","Inter","Utd"]
    After executing deleteFirst, the list should contain these elements (in this order):
    ["Barca", "Utd"]



    Requirements for Problem:




    1. Your code must run correctly for lists containing any number of elements, including an empty list.

    2. No data may be placed in the header node.


    3. IllegalStateException must be thrown when deleteFirst is called on your list when it has only 0 or 1 element.

    4. You must use Java's IllegalStateException class (you must not create your own exception class for this.

    5. You may not introduce any new instance variables or instance methods, and you may not modify the other methods in DoublyLinkedDeleteFirst.

    6. The Node class contained in DoublyLinkedDeleteFirst must not be modified (in particular, no constructor other than the default constructor should be used to construct instances of Node ).

    7. During execution, each Node in your DoublyLinkedDeleteFirst must have correct values for the next and previous Nodes.


    8. There should be no compiler or runtime errors. In particular, no NullPointerException should be thrown during execution.



      public class DoublyLinkedDeleteFirst {



      Node header;

      public DoublyLinkedDeleteFirst() {
      header = new Node();
      }

      //removes the node at position 1 and returns
      //the string contained in that node
      public String deleteFirst() {
      //implement
      Node temp = header;

      try {
      temp = temp.next.next;
      Node deleted = temp;

      temp.previous.next = temp.next;
      temp.next.previous = deleted.previous;
      return deleted.value;
      }catch (NullPointerException e) {
      throw new IllegalStateException();
      }

      }

      public boolean isEmpty() {
      if(header == null)
      return true;
      return false;
      }

      // adds to the end of the list
      public void addLast(String item) {
      Node next = header;
      while (next.next != null) {
      next = next.next;
      }
      Node n = new Node();
      n.value = item;
      next.next = n;
      n.previous = next;

      }

      @Override
      public String toString() {

      StringBuilder sb = new StringBuilder();
      toString(sb, header);
      return sb.toString();

      }

      private void toString(StringBuilder sb, Node n) {
      if (n == null)
      return;
      if (n.value != null)
      sb.append(" " + n.value);
      toString(sb, n.next);
      }

      class Node {
      String value;
      Node next;
      Node previous;

      public String toString() {
      return value == null ? "null" : value;
      }
      }

      public static void main(String args) {
      DoublyLinkedDeleteFirst list = new DoublyLinkedDeleteFirst();
      list.addLast("Inter Millan");
      list.addLast("Barcelona");
      //list.addLast("Manchester United");
      String deleted = list.deleteFirst();
      System.out.println("This item was deleted: " + deleted);
      System.out.println(list);
      }
      }











    share|improve this question







    New contributor




    Andromeda is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.






















      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      Disclaimer: This was an exam question we took and we have already solved it. But my friends and I are not sure if this is the right approach. Here is the question(verbatim) and our solution.



      For this problem, you must implement the following methods
      String deleteFirst() boolean isEmpty(). This deleteFirst () method removes the node in position 1 of the list and returns the string
      contained in that node. The isEmpty() method returns true if there are no items in the list, false otherwise.



      If deleteFirst() is called on a list that contains 0 or 1 element, an IllegalStateException must be thrown. A toString method has been provided so you can test your code.
      Example. Suppose your list has these values:
      ["Barca","Inter","Utd"]
      After executing deleteFirst, the list should contain these elements (in this order):
      ["Barca", "Utd"]



      Requirements for Problem:




      1. Your code must run correctly for lists containing any number of elements, including an empty list.

      2. No data may be placed in the header node.


      3. IllegalStateException must be thrown when deleteFirst is called on your list when it has only 0 or 1 element.

      4. You must use Java's IllegalStateException class (you must not create your own exception class for this.

      5. You may not introduce any new instance variables or instance methods, and you may not modify the other methods in DoublyLinkedDeleteFirst.

      6. The Node class contained in DoublyLinkedDeleteFirst must not be modified (in particular, no constructor other than the default constructor should be used to construct instances of Node ).

      7. During execution, each Node in your DoublyLinkedDeleteFirst must have correct values for the next and previous Nodes.


      8. There should be no compiler or runtime errors. In particular, no NullPointerException should be thrown during execution.



        public class DoublyLinkedDeleteFirst {



        Node header;

        public DoublyLinkedDeleteFirst() {
        header = new Node();
        }

        //removes the node at position 1 and returns
        //the string contained in that node
        public String deleteFirst() {
        //implement
        Node temp = header;

        try {
        temp = temp.next.next;
        Node deleted = temp;

        temp.previous.next = temp.next;
        temp.next.previous = deleted.previous;
        return deleted.value;
        }catch (NullPointerException e) {
        throw new IllegalStateException();
        }

        }

        public boolean isEmpty() {
        if(header == null)
        return true;
        return false;
        }

        // adds to the end of the list
        public void addLast(String item) {
        Node next = header;
        while (next.next != null) {
        next = next.next;
        }
        Node n = new Node();
        n.value = item;
        next.next = n;
        n.previous = next;

        }

        @Override
        public String toString() {

        StringBuilder sb = new StringBuilder();
        toString(sb, header);
        return sb.toString();

        }

        private void toString(StringBuilder sb, Node n) {
        if (n == null)
        return;
        if (n.value != null)
        sb.append(" " + n.value);
        toString(sb, n.next);
        }

        class Node {
        String value;
        Node next;
        Node previous;

        public String toString() {
        return value == null ? "null" : value;
        }
        }

        public static void main(String args) {
        DoublyLinkedDeleteFirst list = new DoublyLinkedDeleteFirst();
        list.addLast("Inter Millan");
        list.addLast("Barcelona");
        //list.addLast("Manchester United");
        String deleted = list.deleteFirst();
        System.out.println("This item was deleted: " + deleted);
        System.out.println(list);
        }
        }











      share|improve this question







      New contributor




      Andromeda is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      Disclaimer: This was an exam question we took and we have already solved it. But my friends and I are not sure if this is the right approach. Here is the question(verbatim) and our solution.



      For this problem, you must implement the following methods
      String deleteFirst() boolean isEmpty(). This deleteFirst () method removes the node in position 1 of the list and returns the string
      contained in that node. The isEmpty() method returns true if there are no items in the list, false otherwise.



      If deleteFirst() is called on a list that contains 0 or 1 element, an IllegalStateException must be thrown. A toString method has been provided so you can test your code.
      Example. Suppose your list has these values:
      ["Barca","Inter","Utd"]
      After executing deleteFirst, the list should contain these elements (in this order):
      ["Barca", "Utd"]



      Requirements for Problem:




      1. Your code must run correctly for lists containing any number of elements, including an empty list.

      2. No data may be placed in the header node.


      3. IllegalStateException must be thrown when deleteFirst is called on your list when it has only 0 or 1 element.

      4. You must use Java's IllegalStateException class (you must not create your own exception class for this.

      5. You may not introduce any new instance variables or instance methods, and you may not modify the other methods in DoublyLinkedDeleteFirst.

      6. The Node class contained in DoublyLinkedDeleteFirst must not be modified (in particular, no constructor other than the default constructor should be used to construct instances of Node ).

      7. During execution, each Node in your DoublyLinkedDeleteFirst must have correct values for the next and previous Nodes.


      8. There should be no compiler or runtime errors. In particular, no NullPointerException should be thrown during execution.



        public class DoublyLinkedDeleteFirst {



        Node header;

        public DoublyLinkedDeleteFirst() {
        header = new Node();
        }

        //removes the node at position 1 and returns
        //the string contained in that node
        public String deleteFirst() {
        //implement
        Node temp = header;

        try {
        temp = temp.next.next;
        Node deleted = temp;

        temp.previous.next = temp.next;
        temp.next.previous = deleted.previous;
        return deleted.value;
        }catch (NullPointerException e) {
        throw new IllegalStateException();
        }

        }

        public boolean isEmpty() {
        if(header == null)
        return true;
        return false;
        }

        // adds to the end of the list
        public void addLast(String item) {
        Node next = header;
        while (next.next != null) {
        next = next.next;
        }
        Node n = new Node();
        n.value = item;
        next.next = n;
        n.previous = next;

        }

        @Override
        public String toString() {

        StringBuilder sb = new StringBuilder();
        toString(sb, header);
        return sb.toString();

        }

        private void toString(StringBuilder sb, Node n) {
        if (n == null)
        return;
        if (n.value != null)
        sb.append(" " + n.value);
        toString(sb, n.next);
        }

        class Node {
        String value;
        Node next;
        Node previous;

        public String toString() {
        return value == null ? "null" : value;
        }
        }

        public static void main(String args) {
        DoublyLinkedDeleteFirst list = new DoublyLinkedDeleteFirst();
        list.addLast("Inter Millan");
        list.addLast("Barcelona");
        //list.addLast("Manchester United");
        String deleted = list.deleteFirst();
        System.out.println("This item was deleted: " + deleted);
        System.out.println(list);
        }
        }








      java exception






      share|improve this question







      New contributor




      Andromeda is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question







      New contributor




      Andromeda is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question






      New contributor




      Andromeda is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 10 mins ago









      Andromeda

      101




      101




      New contributor




      Andromeda is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      Andromeda is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      Andromeda is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.



























          active

          oldest

          votes











          Your Answer





          StackExchange.ifUsing("editor", function () {
          return StackExchange.using("mathjaxEditing", function () {
          StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
          StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["\$", "\$"]]);
          });
          });
          }, "mathjax-editing");

          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "196"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });






          Andromeda is a new contributor. Be nice, and check out our Code of Conduct.










          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f209793%2fhow-to-correctly-handle-an-exception-given-the-specific-constraints%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          Andromeda is a new contributor. Be nice, and check out our Code of Conduct.










          draft saved

          draft discarded


















          Andromeda is a new contributor. Be nice, and check out our Code of Conduct.













          Andromeda is a new contributor. Be nice, and check out our Code of Conduct.












          Andromeda is a new contributor. Be nice, and check out our Code of Conduct.
















          Thanks for contributing an answer to Code Review Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          Use MathJax to format equations. MathJax reference.


          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f209793%2fhow-to-correctly-handle-an-exception-given-the-specific-constraints%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Quarter-circle Tiles

          build a pushdown automaton that recognizes the reverse language of a given pushdown automaton?

          Mont Emei