Write recursive functions that perform insertion

Assignment Help C/C++ Programming
Reference no: EM131065442

Directions: The problems in this assignment are full programming problems. For each program, submit your source code and project files. When adding files to your zip file use folders to keep projects separate. Remember to keep a copy of your work.

1. Write recursive functions that perform insertion and retrieval operations on a pointer-based sorted linked list of integers. The insertion function should be void, taking a head pointer and the item to be inserted as parameters. The retrieval function should take a head pointer and the item to be retrieved as parameters, and should return the item's position, or -1 if the item is not found in the list. Use these procedures to write a program that inputs a series of integers, inserting them into a list until 0 is entered. Then a second series of integers is input, until 0 is entered, and the position of each integer in the list is displayed. Example:

Enter numbers to be inserted (0 to end): 34 23 1 45 7 0
The list is: 1 7 23 34 45
Enter numbers to be retrieved (0 to end): 23 8 45 0
23 is at position 3
8 is not in the list
45 is at position 5

Note that the program should be able to handle requests to retrieve items that are not in the list.

2. Create a class called Board for use in playing the game tic-tac-toe. Recall that the game is played on a 3 x 3 board, where every square is either empty, or contains an "X" or an "O." The game is won when there are three X's or three O's in a straight line, either in the same column, the same row, or one of the two diagonals. The game is a stalemate when the board has no empty squares but neither X nor O has won.

The following includes references to an enumerated type Player, defined as:
enum Player {X, O, empty};

Your class should have the following public methods:

Board: (constructor) This initializes the board, which means it sets all the positions to empty and does all else necessary to make the board ready for use.

void Place(P, Column, Row): A procedure that takes a Player P and sets the Column and Row of the board to be Player P if that position is empty.

If the position is occupied, the player loses a turn.

bool Win(P): A function that returns true if Player P has won the game, and false otherwise.
bool Stalemate(): A function that returns true if the board represents a game in stalemate, and false otherwise.

You do not have to write a complete program that plays the game. However, you are to write a short program that adequately tests all the operations of your class. Notice that the earliest either player can win is after 5 plays.

3. An integer can be represented by a linked list with one digit in each node. The least significant digit in this representation is in the first node of the list. This allows for integers of virtually any size. The nodes are of the following type:

struct digit
{ int Value; // a digit value, 0-9
digit* Next;
};

typedef digit* ptrType;

The following diagram shows the representation for 2149:

1604_java.png

 

Develop an ADT named number with the following operations for unlimited-digit numbers. In the following descriptions, number refers to an object of your ADT. M, N and O are all of type number. The sample usage for each operation shows how it might be used, although you can make your operations work differently.

Increment: A method that increases the value of a number by 1. Sample usage: N.Increment();

Note that you cannot necessarily just change the last digit of the number; adding 1 to 1999, for example, requires changing all four digits to get 2000, and adding 1 to 9 requires making a new digit to get 10.

Hint: You should allow for three possibilities in your function regarding the initial value for N.

a. N is NULL
b. N is not NULL, and the value in the first node is 0..8
c. N is not NULL, and the value in the first node is 9

Copy: A method that copies one number to another. Note that you cannot just copy one pointer to another - you must create copies of each node in the original as illustrated in a copy constructor for linked lists. Sample usage: N.Copy(M);

Sum: A method that takes two numbers and sums them. Sample usage: N.Sum(M); (adds M to N). Don't forget about a carry when the sum of two digits is greater than 10.

Display Number: A method that displays the number in standard (most-significant digit first) form. Sample usage: N.DisplayNumber();

Your ADT should be a C++ class, with all functions and data declared in the appropriate sections. You may use recursion as you wish. Include a short program that adequately tests all the procedures in your ADT.

Reference no: EM131065442

Questions Cloud

Examine issue that may occur during hr planning process : From the scenario, select a country then examine an issue that may occur during the HR planning process when employees are transferred to work as expatriates. Provide the solution to the issue
Show me the code whereby after user has inserted : I need someone to create a form using notepad ++ and show me the code whereby after user has inserted his/her details from the form you can get the details from the database.
Analyzing an article to evaluate how effectively the author : In this discussion assignment, you will be analyzing an article to evaluate how effectively the author has managed to convey his or her point of view.
Define an ethical issue that you either encountered : Define an ethical issue that you either encountered or studied in a previous course (you cannot use prior papers to fulfill this assignment)
Write recursive functions that perform insertion : Create a class called Board for use in playing the game tic-tac-toe. Recall that the game is played on a 3 x 3 board, where every square is either empty, or contains an "X" or an "O." The game is won when there are three X's or three O's in a st..
Use a give pattern of development - compare and contrast : Paragraph Assignment Three will be based on prompts to one of two readings. The prompts will also indicate specific rhetorical modes (patterns of development) to be used in the responses. Choose one of the two suggestions.
How is your behavior as a consumer consistent : How is your behavior as a consumer consistent with the selected primary and secondary group classification descriptions
Can such a system have a unique solution explain : Can such a system have a unique solution? Explain.
What other consumer promotions could be used : How would you organize a sampling program in light of these cultural factors? What other consumer promotions could be used? If you have someone in your class from a Muslim country, ask your classmate to discuss the use of consumer promotions in his ..

Reviews

Write a Review

C/C++ Programming Questions & Answers

  Write a c++ program that prompts the user for a double

Write a C++ program that prompts the user for a double that should be between 0 and 100. If the value entered is outside of the interval the program will print an error message. The program should continue to repeat until the user enters an appropria..

  Implement a function which finds the largest number

Write a function named largest which will receive the array as input and return the variable LargestNumber.

  Modify the class by adding a private int pointer

Modify the class by adding a private int pointer that will be used as an array. Create another overloaded constructor that takes an int pointer and int size as parameters.

  Declare two character arrays

Write a C program for Code warrior, to declare two character arrays called list1 and list2. Initialize list1 with your first and last name. Write the main code to copy list1 to list2.

  Write a program that reads in an integer

Write a program that prompts the user for a measurement in meters, and then converts it in to miles, feet, and inches.

  Appropriate structure to use to program the statement

A home improvement store is giving a discount of 20% on all purchases of more than $250. Which of the following is the appropriate structure to use to program the statement

  Design a special atm machine

design a special ATM machine to be used by needy people -  The association supplies the needy person with a pin number to be able to use the ATM machine.

  How the function delete can be implemented for arrays

Explain in details how the function Delete() can be implemented for arrays to function exactly as it would with lists. Use pseudo code to clarify your explanation.

  What is special about the point where cp is a maximum

what position along the chord does the minimum pressure occur - what is special about the point where Cp is a maximum?

  Write a c program for a hcs12 micro controller that writes

Write a C program for a HCS12 microcontroller that writes the value, 0x78, to Memory Location VAR1 and then calls a delay function. The delay function should generate a delay of 0.25 milliseconds

  In the familiar base 10 system

In the familiar base 10 system, the smallest (rightmost) digit of a number is the ones place (100).  The next digit is in the tens place (101), and the next one is in the hundreds place (102) and so forth.  Thus the number 122 is really (1 * 102) + (..

  Template class definition

You have the following template class definition.  template  class mypair {

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd