473,387 Members | 1,899 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Read string for arithmetic operation

Hello everyone,

I have a question regarding how to interpret a string.

Basically I want to write a little calculator, I will type something
like "12+69*12-44/2" and then want my program to compute it into the
result :)

I experimented a bit with strtok and the like, but I think I am not sure
how I should approach this problem. The problem being the priorities of
the operators of course.

Should I split the string? Right now I just put all numbers in a list,
so I would get:
12->69->12->44->2
Now I could make the same for the signs like +->*->-->/ and try to sort
things out and so on, I am really not sure.

Anyone got a hint for me how to do this?
I am thankful for any idea.

Thomas
Aug 3 '06 #1
4 4678
Thomas Kreuzer wrote:
Hello everyone,
I have a question regarding how to interpret a string.

Basically I want to write a little calculator, I will type something
like "12+69*12-44/2" and then want my program to compute it into the
result :)

I experimented a bit with strtok and the like, but I think I am not sure
how I should approach this problem.
strtok is a problematic function. I would recommend you do it via the
strcspn(p) functions.
[...] The problem being the priorities of
the operators of course.

Should I split the string? Right now I just put all numbers in a list,
so I would get:
12->69->12->44->2
Now I could make the same for the signs like +->*->-->/ and try to sort
things out and so on, I am really not sure.

Anyone got a hint for me how to do this?
The key is to to scan the expression, and first of all distinguish
between subtraction and negation. Then what you do is you find the
first operator with the *least* precidence. So in your case, its the
"+" after the "12". Then you recursively calculate each parameter for
the operation, in this case "12" and "69*12-44/2", which will end up as
12 and the other as 806. Then switch on the operator "+" to an
addition code snippet, which would add the two results to get 806 + 12
= 818. Then just return this final result.

The tricky part is basically keeping track of parenthesis levels and
detecting the difference between negation and subtraction. Negation
has higher precidence than subtraction, so this actually makes a big
deal. So you'll know things are sort of working when you can parse:

1-2----(--3-4)-5

correctly.

--
Paul Hsieh
http://www.pobox.com/~qed/
http://bstring.sf.net/

Aug 3 '06 #2
Thomas Kreuzer wrote:
Hello everyone,

I have a question regarding how to interpret a string.

Basically I want to write a little calculator, I will type something
like "12+69*12-44/2" and then want my program to compute it into the
result :)

I experimented a bit with strtok and the like, but I think I am not sure
how I should approach this problem. The problem being the priorities of
the operators of course.

Should I split the string? Right now I just put all numbers in a list,
so I would get:
12->69->12->44->2
Now I could make the same for the signs like +->*->-->/ and try to sort
things out and so on, I am really not sure.

Anyone got a hint for me how to do this?
assuming that operands is the list of operands and
operators is the list of operators:

12+69*12-44/2
=[12 69 12 44 2] (array of operands)
=[+ * - /] (array of operators)
while (operators has at least one operator) {
i = first position of * or / in operators
if no * or / found, then i = first operator
apply operators[i] on operands[i] and operands[i+1]
store result in operands[i]
remove operands[i+1]
remove operators[i]
}

Try changing the steps to include correct parsing
of nested braces.

goose,

Aug 4 '06 #3
The question is what is faster, or "better".
Is the list approach useful? Or should I try to make it recursively like
it was suggested? Most of the time recursions are slower then
iterations, but with lists I have to go through them a lot of times etc.

My main goal will not be just a simple calculator but I want actually
matrix operations implemented and this is then my underlying function to
compute all arithmetic expressions. So it should be as fast as possible
with my abilities :)

A compile must have a similar algorithm, how do they parse the strings?

Thanks in advance,
Thomas
Aug 4 '06 #4
Thomas Kreuzer wrote:
>
The question is what is faster, or "better". Is the list approach
useful? Or should I try to make it recursively like it was
suggested? Most of the time recursions are slower then iterations,
but with lists I have to go through them a lot of times etc.

My main goal will not be just a simple calculator but I want
actually matrix operations implemented and this is then my
underlying function to compute all arithmetic expressions. So it
should be as fast as possible with my abilities :)

A compile must have a similar algorithm, how do they parse the
strings?
You neglected to quote whatever you are replying to, and the result
makes no sense. Always ensure your articles stand by themselves.

I suspect you are trying to convert a text string into an
arithmetic expression. This requires a lexical analyser, probably
best followed by conversion to reverse Polish notation (look that
up), together with suitable error detection.

--
Chuck F (cb********@yahoo.com) (cb********@maineline.net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.netUSE maineline address!
Aug 5 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

43
by: Mehta Shailendrakumar | last post by:
Hello, Can anyone suggest me operator to perform arithmetic shift in C? May it be for a perticular compiler. Thank you in advance. Regards, Shailendra
17
by: Chad Myers | last post by:
I've been perf testing an application of mine and I've noticed that there are a lot (and I mean A LOT -- megabytes and megabytes of 'em) System.String instances being created. I've done some...
4
by: Tom | last post by:
I have a VB.NET framework 1.1 application that I am installing on my user's workstation. It works fine on EVERY machine except for one - on this one machine it generates a 'Overflow or underflow in...
46
by: Albert | last post by:
Why doesn't: #include <stdio.h> void reverse(char, int); main() { char s;
44
by: gokkog | last post by:
Hi there, There's a classic hash function to hash strings, where MULT is defined as "31": //from programming pearls unsigned int hash(char *ptr) { unsigned int h = 0; unsigned char *p =...
11
by: sethukr | last post by:
hi everybody, char str="string"; str^=str; can anybody plz tell me the use of ^operator in string??? -Sethu
9
by: Mike Aubury | last post by:
Is there any standard (or even non-standard) way to detect limit overflow in arithmetic in C ? eg. /* assuming 4 byte ints.. */ int a=2147483647; int b=2147483647; int c;
7
by: Mike TI | last post by:
Nov 13, 2007 Hi all Can I build a string for arithmetic operation. (VB NET 2005) e.g. I want to build an arithmetic operation from within the program as
10
by: vincex200 | last post by:
My group needs help with this program. We attempted to start it and got no where. Please help us. Write a C++ program that will read data from a file, perform computation on the data, then print...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

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.