Status
Not open for further replies.

djflakf1

Active Member
60
2012
6
30
Hello i'm looking somebody that can help me for a c++ codes but is wrote in spanish so maybe if you know C++ with structs you can help me :)

if you are interested send me a private for answer here :)

---------- Post added 14th Nov 2012 at 05:00 AM ---------- Previous post was 13th Nov 2012 at 11:35 PM ----------

i'm looking a coder in C++ for a struct work please HELP
 
Last edited by a moderator:
10 comments
Post what the problem is about and the progress you've made so far. Do not expect anyone to do the homework for you.
 
i'm confused in other forum of graphics i found a service for create a banner and i did pay for that and now i'm trying to contract somebody that can help with this.. so.. can i expect somebody that can do this for money i'm not here expecting this FREE i'll pay..
 
i want to know that it is posible contract somebody can help with of this forum is for other topics... for just request close the thread i want to know that..
 
This is very much possible djfla, Gaurav was just trying to teach you which seems useless now. There are several coders here who can do this for you. Please post your budget to attract more replies.
 
1. Write a function to insert elements into a sorted list.

2. Write a program that reads a string, enter it into a pile and then empty the stack.

3. Write a function to scan the list of vertices and return the position of a vertex.

4. Write the following expression in infix form.
a b c + *
 
You can find both help & hire services in Wjunction, Development Area is reserved for people who prefer to do things by himself or in this case for request help to other experienced members.

If you wanna hire/pay services go MarketPlace Section > Services

You can PM me in Spanish language if you still have doubts about how WJunction works ;)
 
1. Write a function to insert elements into a sorted list.

2. Write a program that reads a string, enter it into a pile and then empty the stack.

3. Write a function to scan the list of vertices and return the position of a vertex.

4. Write the following expression in infix form.
a b c + *

What are you able to use?
if you can't use stl try s.th. like this

1:
- Set i to the index of the last element in the array
- If the element to insert is larger then a then insert the element at index i+1 and stop.
- Otherwise set a[i+1] = a then decrease i and repeat the previous step.
- If i reaches 0, insert the element at the start.
--> http://stackoverflow.com/questions/4005284/insert-to-sorted-position-linked-list
if you can use stl: http://www.cplusplus.com/reference/stl/list/insert/ && http://www.cplusplus.com/reference/stl/list/sort/

2:
with stl: http://www.cplusplus.com/reference/stl/stack/empty/
without stl: i don't know what pile ist (sry, english isn't my primary language) so i don't really know what to do.
Reading a string via StringBuffer or charbuffer

3:
well just iterate through you list? Compare the Stack-Place of your vertices to gain the exact position

4:
a b c + * looks like postfix notation.
so to get it to "normal" algebra we have to figure out what happens in postfix: read the wiki
so. lets begin:
okay, first thin is an a - and first operation is an * (take 1 left and 1 right)
so: a * - add braces, because of *
next is b and + so add this to our equation:
a * (b+
What's left? the c is left.
so add this
a * (b+c
close all braces:
a* (b+c)

finished ;P
 
Status
Not open for further replies.
Back
Top