473,769 Members | 2,088 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Infix to Postfix Conversion Header File

3 New Member
Alright basically I just have one simple question. I can code perfectly fine and don't have any problems with the .cpp of the infix class but with my header I can't get anything to work really, any guideline as to how to start this would be great. It has to work with assign.cpp which is like this:
Expand|Select|Wrap|Line Numbers
  1. int main()
  2. {
  3.  
  4.    Infix infix;
  5.  
  6.    while (true)
  7.    {
  8.       //cout << "Enter an infix expression like 2*(3+4): " << endl;
  9.  
  10.       infix.read();
  11.  
  12.       if (cin.eof() )
  13.      break;
  14.  
  15.       infix.write();
  16.       cout << " = " << infix.evaluate() << endl;
  17.  
  18.    }  // end while
  19.  
  20.    return 0;
  21. }  // end main
I know this is sorta a dumb question but it's the only problem I'm really having.
Thanks
Mar 21 '07 #1
5 3748
horace1
1,510 Recognized Expert Top Contributor
I assume if you include the infix.cpp file it works OK but when you try to just include the infix.h and link the infix.cpp at link time you have problems??
have you an example of the header that is causing problems? or a list of error messages?
Mar 21 '07 #2
Thumbski
3 New Member
Basically it is telling me with the infix.read() function types that the item to the left of .read() has to be a class, structure, etc. So basically it must have something to do with my constructor at the moment. Except the thing is I don't even know what to put in my constructor, I have a couple functions initiliazed outside of it but otherwise I have just a default constructor. Sorry I know this is really vague but I do NOT understand header files for some ridiculous reason. Any help or input would be great.

Thanks
Mar 21 '07 #3
horace1
1,510 Recognized Expert Top Contributor
Basically it is telling me with the infix.read() function types that the item to the left of .read() has to be a class, structure, etc. So basically it must have something to do with my constructor at the moment. Except the thing is I don't even know what to put in my constructor, I have a couple functions initiliazed outside of it but otherwise I have just a default constructor. Sorry I know this is really vague but I do NOT understand header files for some ridiculous reason. Any help or input would be great.

Thanks
think you are going to have to post some code
Mar 21 '07 #4
Thumbski
3 New Member
Here is my .h so far. As you can see I've just initialized the functions that I"m going to be using in the .cpp.
Expand|Select|Wrap|Line Numbers
  1. namespace Project4a {
  2.  
  3.  
  4.     public ref class Infix : public System::Windows::Forms::Form
  5.     {
  6.     public:
  7.         Infix(void)
  8.         {
  9.             InitializeComponent();            
  10.  
  11.         }
  12.         void initStack(STACK *stack);
  13.         void get_infix(char infix[]);
  14.         void convertToPostfix(char infix[], char postfix[]);
  15.         int isOperator(char c);
  16.         int precedence(char operator1, char operator2);
  17.         int pred_level(char ch);
  18.         void push(STACK *stack, char value);
  19.         char pop(STACK *stack);
  20.         char stackTop(STACK *stack);
  21.         int isEmpty(STACK *stack);
  22.         int isFull(STACK *stack);
  23.         void printResult(char infix[], char postfix[]);
  24.         void print_msg(void);
  25.  
  26.     protected:
  27.  
  28.         ~Infix()
  29.         {
  30.             if (components)
  31.             {
  32.                 delete components;
  33.             }
  34.         }
  35.  
  36.     private:
  37.  
  38.         System::ComponentModel::Container ^components;
  39.  
  40.  
  41.  
However the errors I"m getting are coming up in the assign.cpp which has the following code.
Expand|Select|Wrap|Line Numbers
  1.  
  2. int main()
  3. {
  4.  
  5.    Infix infix;
  6.  
  7.    while (true)
  8.    {
  9.       //cout << "Enter an infix expression like 2*(3+4): " << endl;
  10.  
  11.       infix.read();
  12.  
  13.       if (cin.eof() )
  14.      break;
  15.  
  16.       infix.write();
  17.       cout << " = " << infix.evaluate() << endl;
  18.  
  19.    }  // end while
  20.  
  21.    return 0;
  22. }  // end main
My main question is just about what I need to do in order to get the header file to make it so that the rest of the program recognizes it as an object of a class. Infix that is.

Thanks
Mar 21 '07 #5
Ganon11
3,652 Recognized Expert Specialist
Since the class is included inside a namespace, you may have to write

Expand|Select|Wrap|Line Numbers
  1. Project4a::Infix infix;
instead of

Expand|Select|Wrap|Line Numbers
  1. Infix infix;
or at the top of your main() program, put the statement

Expand|Select|Wrap|Line Numbers
  1. using namespace Project4a;
Mar 21 '07 #6

Sign in to post your reply or Sign up for a free account.

Similar topics

5
5988
by: KidLogik | last post by:
Hello! I am converting an infix expression string into a postfix so that I will be able to evaluate it easier -> (5*(((9+8)*(4*6))+7)) == 598+46**7+* I believe the rule is "Replace all occurances of two operands followed by an operator by their infix equivalent"
22
3804
by: Tony Johansson | last post by:
Hello Experts! I'm reading i a book about C++ and they mention infix with telling what it is. I hope you out there can do so. Many thanks! //Tony
19
11310
by: caramel | last post by:
i've been working on this program forever! now i'm stuck and going insane because i keep getting a syntax error msg and i just can't see what the compiler is signaling to! #include <stdio.h> #include <stdlib.h> #include <string.h> #include <ctype.h>
11
48761
by: Nhd | last post by:
Hi... I need a program to convert an infix arithmetic expression to postfix with the use of stacks... Can anyone tell me how do i go about implementing this? thanks
30
5497
by: Xah Lee | last post by:
The Concepts and Confusions of Prefix, Infix, Postfix and Fully Functional Notations Xah Lee, 2006-03-15 In LISP languages, they use a notation like “(+ 1 2)” to mean “1+2”. Likewise, they write “(if test this that)” to mean “if (test) {this} else {that}”. LISP codes are all of the form “(a b c ...)”, where the
0
2527
by: coolguyjas07 | last post by:
plzzzzzz help me out to run my source code ......... i hav written dis code to convert infix expression to postfix but not getting desired output.... plzzz help me to get correct output.. d source code is given below: #include<iostream.h> #include<conio.h> #include<stdio.h> #include<ctype.h> #include<string.h> #include<process.h>
4
3843
by: madhumitha29 | last post by:
Does anyone know a simple C program to covert an infix to a postfix expression?plz kindly help!
1
6546
by: aitia | last post by:
this the code. i used ECLIPSE to run this.. it has some codes smells that i can't seem to figure out.. can any one help? import java.io.*; import java.util.*; public class Postfix { private static Stack operators = new Stack(); private static Stack operands = new Stack();
2
5613
by: zeroeight | last post by:
Hi guys, I'm a newbie here, I just want to seek for help regarding my program. I want to implement an infix to postfix conversion only accepting numbers. Right now, I already debugged the errors and encountering loop everytime I execute it. Here's my sample code: ******************************************************************** #include<stdio.h> #include<conio.h>
0
9589
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, well explore What is ONU, What Is Router, ONU & Routers main usage, and What is the difference between ONU and Router. Lets take a closer look ! Part I. Meaning of...
0
10216
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9997
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9865
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8873
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development projectplanning, coding, testing, and deploymentwithout human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7413
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupr who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5448
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3965
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3565
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.