Write a c++ program that creates and populate a tree

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

Write a C++ program that creates and populate a tree for an arithmetic expression. Then it should perform an in-order and a post-order traversal on the tree. The input of the program will be a text file with the arithmetic expressions in RPN. The output of the program will be a printout of the arithmetic expression written out in both in-fix and post-fix (Reverse Polish) notations. The program does not need to compute the value of the expressions, only print them out.

Note: - The in-fix notation must have all brackets in the right placesi.e. the in-order traversal must be modified to achieve this.

- The post-fix print out is useful for debugging purposes, as it should look like the original text file.

- You need to use a stack that is able to store Tree pointers. You can modify the Stack we developed in class, or use STL.

Remember that you can use the following algorithm to build the tree out of a file with the post-fix notation:

An algorithm to construct an arithmetic tree

Read in an expression that is already in post-fix notation.
Tree *T1, *T2, *T;  Stack S; //note that S is a stack of pointers to trees
while (expression continues) {
  x = next item from the expression
  if (x is a number) { S.Push(new Tree(x, NULL, NULL)); }
  if (x is an operator) {
     T1 = S.Top();  S.Pop();
     T2 = S.Top();  S.Pop();
     S.Push(new Tree(x, T2, T1));  //note order of T2 and T1
  }
}

T = S.Top();

Submit a one file code on Stream by 6pm on Wednesday 2 of May 2013. Your name and ID number must appear on top of the file as comments.  If you are working in a group then all names and IDs must appear on top of the file as comments. Submit one file per group on Stream.

Reference no: EM13331451

Questions Cloud

Are there any similar situations or problems : Using 'Draft TV Commercials' as your case, complete questions 1, 2, 3, 4, 5, 6, and 8. Do not complete item 7. Here are the question.
Critical analysis assignment : critical analysis in the sense we have to identify similarities and differences in the given six papers and one theme present our findings. it not like rephrasing a paragraph and documenting it.
What is the average intensity of this beam : A 0.45mW laser produces a beam of light with a diameter of 1.5mm. What is the average intensity of this beam
Write a c++ program that creates and populate a tree : Write a C++ program that creates and populate a tree for an arithmetic expression. Then it should perform an in-order and a post-order traversal on the tree.
Critical analysis of a project management plan : Critical analysis of a Project Management Plan
Describe the role of relationship development and management : Describe the role of relationship development and management in effective leadership, and use the concepts in improving leadership effectiveness.
Use a one-dimensional array to solve the following problem : Use a one-dimensional array to solve the following problem: Read in 20 numbers, each of which is between 10 and 100 inclusive.
Research how people and organizations react to change : Research how people and organizations react to change, both positive and negativ

Reviews

Write a Review

C/C++ Programming Questions & Answers

  Create program that uses functions and reference parameters

Create program that uses functions and reference parameters, and asks user for the outside temperature.

  Write a program using vectors and iterators

Write a program using vectors and iterators that allows a user to maintain a personal list of DVD titles

  Write the code required to analyse and display the data

Calculate and store the average for each row and column. Determine and store the values for the Average Map.

  Write a webservices application

Write a webservices application that does a simple four function calculator

  Iimplement a client-server of the game

Iimplement a client-server version of the rock-paper-scissors-lizard-Spock game.

  Model-view-controller

Explain Model-View-Controller paradigm

  Design a nested program

How many levels of nesting are there in this design?

  Convert celsius temperatures to fahrenheit temperatures

Write a C++ program that converts Celsius Temperatures to Fahrenheit Temperatures.

  Evaluate and output the value in the given base

Write C program that will input two values from the user that are a Value and a Base with which you will evaluate and output the Value in the given Base.

  Design a base class shape with virtual functions

Design a base class shape with virtual functions

  Implementation of classes

Implementation of classes Chart and BarChart. Class barChart chould display a simple textual representation of the data

  Technical paper: memory management

Technical Paper: Memory Management, The intent of this paper is to provide you with an in depth knowledge of how memory is used in executing, your programs and its critical support for applications.

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