Java linked programming, Homework Help

Other

Try to change a list of characters(char)  in linked list from lower case to upper case. 

heres my code: 

// Main program

package ll_csc300_sp2016;

public class Ll_csc300_sp2016 

{

     

    public static void main(String[] args) 

    {

         

        List myList = new List();

       

        myList.insertAtHead(‘a’); //list input

        myList.insertAtHead(‘b’);

        myList.insertAtHead(‘c’);

        myList.insertAtHead(‘d’);

        myList.insertAtHead(‘e’);

       

        myList.display();

       

        myList.toUppercase();

       

       

    }

   

}

// Class List 

/*

list manager class.

 */

package ll_csc300_sp2016;

public class List

{

    public Node head;  //list manager

   

    List () { head = null; }

    List (Node n) { head = n; }

   

    public void displayIterative() 

    {

        Node p = head;

       

        while (p != null)

        {

            System.out.println(p.input); // if its not empty go to the next one

           

            p = p.next; 

        }

    }

   

    public void display() 

    {

        displayR(head); //display the file

       

       

    }

   

   

    private void displayR(Node p)

    {

        if (p == null) return; 

       

        System.out.println(p.input);

       

        displayR(p.next);            

    }

           

   

    public Node find (char a)

    {

        Node p = head;

       

        while (p != null)

        {

            if (p.input == a)

               

                return p;

           

            p = p.next;

           

           

        }

       

        return null;

    }

   

    public Node toUppercase (char a)

    {

        Node p = head;

       

        while (p != null)

        {

            if (p.input == ‘a’) // if input is lowercase char

               

            a = Character.toUpperCase(a); // change it to uppercase

             

            p = p.next;

           

            return p;

            //p = p.next;

             //return p;    

        }

       

        return null;

    }

    public void insertAtHead(char i)  //input

    {

        Node newOne = new Node(i);

        newOne.next = head;

       

        head = newOne;

    }

   

   

}

//class node

/*

 node class

 */

package ll_csc300_sp2016;

public class Node

{

    public char input;

    public Node next;

    Node() //constructor 

    {

       

        next = null;

    }

    Node(char d)

    {

        input = d;

        next = null;

       

    }

   

   

     

}

#write essay #research paper #blog writing #article writing #academic writer #reflective paper #essay pro #types of essays #write my essay #reflective essay #paper writer #essay writing service #essay writer free #essay helper #write my paper #assignment writer #write my essay for me #write an essay for me #uk essay #thesis writer #dissertation writing services #writing a research paper #academic essay #dissertation help #easy essay #do my essay #paper writing service #buy essay #essay writing help #essay service #dissertation writing #online essay writer #write my paper for me #types of essay writing #essay writing website #write my essay for free #reflective report #type my essay #thesis writing services #write paper for me #research paper writing service #essay paper #professional essay writers #write my essay online #essay help online #write my research paper #dissertation writing help #websites that write papers for you for free #write my essay for me cheap #pay someone to write my paper #pay someone to write my research paper #Essaywriting #Academicwriting #Assignmenthelp #Nursingassignment #Nursinghomework #Psychologyassignment #Physicsassignment #Philosophyassignment #Religionassignment #History #Writing #writingtips #Students #universityassignment #onlinewriting #savvyessaywriters #onlineprowriters #assignmentcollection #excelsiorwriters #writinghub #study #exclusivewritings #myassignmentgeek #expertwriters #art #transcription #grammer #college #highschool #StudentsHelpingStudents #studentshirt #StudentShoe #StudentShoes #studentshoponline #studentshopping #studentshouse #StudentShoutout #studentshowcase2017 #StudentsHub #studentsieuczy #StudentsIn #studentsinberlin #studentsinbusiness #StudentsInDubai #studentsininternational