Need Help Java Project Part 1 Done Need Help Parts Program Use Stack Implement Backtrackin Q37027496

Need help with Java project. I have part 1 done and need helpwith 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 the move (a digit

OR
OR

Leave a Comment

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