Forum: C++ May 12th, 2008 |
| Replies: 4 Views: 1,300 Duoas,
you might have saved my day it just might work. Now thats what i call magic. |
Forum: C++ May 12th, 2008 |
| Replies: 4 Views: 1,300 Thanks for the reply, I guess I'll try and write my own function to parse the string then put it on a stack in RPN. the reason why I was asking was the book im learning from had that function in one... |
Forum: C++ May 12th, 2008 |
| Replies: 4 Views: 1,300 I have a feeling this question might be a no brainer to all you. But is it possible to convert a string object to an istream obj. Because what I need to do is read the string expression and then... |
Forum: C++ May 12th, 2008 |
| Replies: 1 Views: 1,991 I was able to figure out another way to reverse the linked list using recursion.
node* reverse_list (node* head_ptr)
{
node* current = NULL;
if (head_ptr->link() != NULL) ... |
Forum: C++ May 5th, 2008 |
| Replies: 1 Views: 1,991 Hi guys,
I was wondering if I could get some help on the topic of recurrsion. A week ago i was told to create a application using nodes. this week I need to convert the reverse_list fuction I made... |