Need Help Java Project Part 1 Complete Stack Done Need Help Parts Program Use Stack Implem Q37113182

need help with java project. part 1 is complete i have the stackdone. just need help with the other parts

In this program you will use a Stack to implement backtrackingto solve Sudoku puzzles.

Part I. Implement the stack class.

  •  Created a generic, singly-linked implementation of a Stackwith a topPtr as the only instance variable. Implement thefollowing methods only:

    public MyStack() //the constructor should simply set the topPtrto null public void push(E e)
    public E pop()

  •  Test your class thoroughly before using it within the sodukuprogram

  • Part II. Create a class to keep track of a move

 Your move class will need to store

OR
OR

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.