Search:

Type: Posts; User: perezbrandon92

Search: Search took 0.09 seconds.

  1. Re: Linked list help simple little problem i need help with

    Im sorry its I 'm terrible at wording what i want to say . But yes the removeLast() should remove the last letter but instead i got it removing the top letter starting with b
  2. Re: Linked list help simple little problem i need help with

    There is no real problem it doesn't do anything incorrectly , i got my code backwards ! The output show one letter being removed b c then d , the question is where do i need to modifiy my code to...
  3. Re: Linked list help simple little problem i need help with

    sorry about that norm im new here and a begginer programmer! and my bad i meant to say lower case l , k, and j !
    thanks for the heads up on the tags
  4. Linked list help simple little problem i need help with

    okay so heres my code


    import java.util.Iterator;
    import java.util.NoSuchElementException;

    public class LinkedList<Item> implements Iterable<Item> {

    private Node head;
    private Node last;
  5. Linked list help simple little problem i need help with

    okay so heres my code

    import java.util.Iterator;
    import java.util.NoSuchElementException;

    public class LinkedList<Item> implements Iterable<Item> {

    private Node head;
    private Node...
Results 1 to 5 of 5