Homework 01 Solution

$29.99 $18.99

Purpose: To be able to choose the correct data structure for each problem. ——————————————————————————————– For all HW: Must test your program on empress with g++. YOU MUST answer the State of the Program questions honestly or you will lose points. They will help us debug your program. Q0) Initial State of the Program Statement [4pts]:…

You’ll get a: . zip file solution

 

 
Categorys:
Tags:

Description

Rate this product

Purpose: To be able to choose the correct data structure for each problem.

——————————————————————————————–

For all HW: Must test your program on empress with g++.

YOU MUST answer the State of the Program questions honestly or you will lose points. They will help us debug your program.

Q0) Initial State of the Program Statement [4pts]:

  1. Does your stack class compile without errors? If not, describe. yes

  1. Does it run with stacktest.cpp without errors? yes

  1. Does your queue class compile without errors? If not, describe. yes

  1. Does it run with queuetestp.cpp without errors? yes

Problem 1: Write a stack application program to evaluate post-fix expressions.

[8+12=20pts] Your score is:

Must use my stack.h, stack.cpp, client1.cpp templates. Run my solution program first to study the output.

The user will enter a post-fix expression of the form

34+

which means 3+4

345+*

which means 3*(4+5)

722+-

which means 7-(2+2)

as a string. Operators are +, -, and *. Single digit numbers only. No blanks.

Please note that the expression could be wrong.

e.g.

3+ – too few operands (i.e. cannot pop operand)

345 – incomplete expression (i.e. more than the result at the end)

Your program will display the evaluated result (a number) or an error message describing what is wrong (the algorithm is in Notes-1, so use it as given).

  • You may assume that no expression will be longer than 12 characters.

  • Since each element of the string is a character, you will need to convert it to an integer to perform arithmetic operations.

Q1) Warm Up Exercises [4pts = 1 pt per question]:

For each, report the type of error (and why the error occurred) and/or the computed result.

Do not say Overflow or Underflow!

Input1: 3141-*+5- = 1

Input2: 314-*+5- too few operands

B

C

AA

AB

AC

BA

BB

BC

CA

CB

CC

AAA

AAB

AAC

ABA

ABB

ABC

ACA

ACB

ACC

etc.

First answer these questions:

Q4) What data structure do you plan to use (char queue or string queue)?[2pts] char queue

Q5) Describe how this data structure will allow you to generate the strings in the above order. Give the algorithm in English. Demonstrate using an example. [2pts] By using character it allows us to add them together. for example ‘a’ + ‘a’ will equal to ‘aa’.

Implement the client program. The program should keep on going until your data structure overflows. At that point, at least 25 strings should have been displayed. Then, answer the following:

Q6) State of the Program Statement [2pts]:

  • Does your program compile without errors? If not, describe. yes

  • List any bugs you are aware of, or state “No bugs”: no bugs

SUBMIT THESE 9 FILES TO COUGAR COURSES:

Always make sure the files you submit can be opened on a PC and be edited

  1. This file with your answers inserted (docx, doc, or rtf)

  1. Program 1

o

Stack.h

Header file with good comments.

o

Stack.cpp

Implementation file with good comments.

o

Client1.cpp

Client program with good comments.

o

Test1

Script result of compiling & executing your program on

empress.csusm.edu for the required test cases. Submit even if your

program does not compile.

3. Program 2

o

Queue.h

Header file with good comments.

o

Queue.cpp

Implementation files with good comments.

o

Client2.cpp

Client program with good comments.34

o

Test2

Script result of compiling & executing your program on

empress.csusm.edu. Submit even if your program does not compile.

  1. Whether working or not, test result must include the lines for compiling your

files or we will not grade your program i.e. 0 points for the program.

  1. Did you check your comments and style against CS311 How To

  1. Did you answer all the questions?