Skip to content

dennohpeter/LINKED-LISTS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LINKED-LISTS

This is a solution for PART 2: Programming

2.Write the implementation for a linked list of integers (modify/adapt for int the generic implementation discussed in class). Have the following: //Interface: LinkedListIntADT public interface LinkedListIntADT { public boolean isEmptyList(); public void initializeList(); public void print(); public int length(); public int front(); public int back(); public boolean search(int searchItem); public void insertFirst(int newItem); public void insertLast(int newItem); public void deleteNode(int deleteItem); }

//Class: LinkedListIntClass implements //Interface: LinkedListIntADT import java.util.*; public abstract class LinkedListIntClass implements LinkedListIntADT { ... }

Feel free to leave you scribbles

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages