1. Create a program (using main method) that will sort an array of int using a bubble sort algorithm. You can declare an array of int[] in the program.

2. Create a LinkedList for the following node:

class Node {
public String name;
public Node next;
Node( ) { }
Node(Sting s) { // set the name }
}

Implement code for all methods for the LinkedList and create a main program to test each method in the LinkedList.

class MyLinkedList {

private Node head;

MyLinkedList( ) { }
public void addNode(Node n) { // add a Node to end of the LinkedList }
public void printList( ) { // print each element in the LinkedList }
public void insertBefore (int index, Node n) { // adds Node n before index value }
public void insertAfter (int index, Node n) { // adds Node n after index value }
public int indexOf (String str) { //returns index of where String str is at. Returns -1 if String str
is not in LinkedList }
public void removeNodeAt(int index) { // removes Node at index value }

}
Academic Honesty!
It is not our intention to break the school's academic policy. Posted solutions are meant to be used as a reference and should not be submitted as is. We are not held liable for any misuse of the solutions. Please see the frequently asked questions page for further questions and inquiries.
Kindly complete the form. Please provide a valid email address and we will get back to you within 24 hours. Payment is through PayPal, Buy me a Coffee or Cryptocurrency. We are a nonprofit organization however we need funds to keep this organization operating and to be able to complete our research and development projects.