473,769 Members | 5,449 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Plz i need ur help

Write a program that reads in a sequence of words and prints them in
reverse order.Using STACK.

Dec 9 '05 #1
11 1904

"abico" <ab******@yahoo .com> wrote in message
news:11******** ************@o1 3g2000cwo.googl egroups.com...
Write a program that reads in a sequence of words and prints them in
reverse order.Using STACK.


No. I won't do it, and you can't make me. Unless of course, you're
offering $$$$????

Please see the FAQ: http://www.parashift.com/c++-faq-lite/

-Howard


Dec 9 '05 #2
abico <ab******@yahoo .com> wrote:
Write a program that reads in a sequence of words and prints them in
reverse order.Using STACK.


http://www.parashift.com/c++-faq-lit...t.html#faq-5.2

--
Marcus Kwok
Dec 9 '05 #3
abico wrote:
Write a program that reads in a sequence of words and prints them in
reverse order.Using STACK.


Sure. Just give me your instructor's name and email address so I can
send it to him directly.
Dec 9 '05 #4
std::stack?

Dec 10 '05 #5
abico wrote:
ab*****@hotmail .com


Nice try. Your *INSTRUCTOR'S* email, not yours. I want to send it to
him directly, so he'll know you didn't write it.
Dec 10 '05 #8
On 9 Dec 2005 10:33:23 -0800, "abico" <ab******@yahoo .com> wrote:
Write a program that reads in a sequence of words and prints them in
reverse order.Using STACK.


As others have said, we won't do your homework for you. However we
can offer some guidance.

First you might clarify the question, are the words one to a line or
can more than one appear on a line? I will assume the second. Is
"STACK" a class that you have been working on in your course? If not
then I will assume you need to use std::stack.

You have not posted any of your own code. That is a pity because it
lets us see what sort of stage you have reached. That would enable us
to pitch our advice at the right level for you. As it is I have to
guess, and I might guess wrong.

A mistake many beginners make is to try to write too much code at
once. The more you write the more difficult it is to find the errors.
Develop your code in *small* steps, testing the code at each step.
Only go on to the next step when you are sure that it is working
correctly.

1 I suggest that you start by writing a piece of code to write a
message to the screen: "Enter some words to reverse: ". Just that.
Yes, I know that you can do that already but it is best to start with
something that you do know and only later extend into the parts that
are new. Test your code and get it working correctly. Do not go on
until it is working properly.

2 Amend your program to read one word and to copy that word to the
screen. Test your code and get it working correctly. Do not go on
until it is working properly.

3 Amend your program to read two words and print them out in the
correct order. This is more complex than it may appear at first since
the two words may be on the same line or on separate lines - you will
need to handle both cases. Test your code and get it working
correctly. Do not go on until it is working properly.

4 Amend your program to read an arbitary number of words, split over
one or more lines, and print them out in the same order. Again there
is a hidden complication since you will have to think of a way to tell
when the last word has been entered. You may want to amend the
message you used at step 1. Test your code and get it working
correctly. Do not go on until it is working properly.

5 Have a look at what your instructor has said about stacks. Make
sure that you understand it. If you don't then ask your instructor to
explain the bits you are not certain of. If needed read up in your
C++ textbook about std::stack and how to use it.

6 When you understand a stack, think about how to use it to reverse
the order of something. To check your understanding you might want to
write a short test program to reverse the order of some integers using
a stack:

7 Now use your knowledge of how a stack works to reverse the order of
the words in your program from step 4. Test your code and get it
working correctly.

If you get stuck at any point then post what you have written here and
we will help you with it.

Points to remember:
- Develop code in small steps.
- Test each step.
- Each step must work before you proceed.

As you get more skilled the steps might become larger but you should
still use the same general method.

rossum
The ultimate truth is that there is no ultimate truth
Dec 11 '05 #9
On 9 Dec 2005 10:33:23 -0800 in comp.lang.c++, "abico"
<ab******@yahoo .com> wrote,
Write a program that reads in a sequence of words and prints them in
reverse order.Using STACK.


Is the requirement actually to use std::stack? Because the
restricted interface makes it harder than necessary. Using a
vector as a functional stack:

#include <string>
#include <vector>
#include <iostream>
#include <iterator>
using namespace std;

int main()
{
vector<string> foo;
copy( istream_iterato r<string>(cin) ,
istream_iterato r<string>(),
back_inserter(f oo));
copy(foo.rbegin (), foo.rend(),
ostream_iterato r<string>(cout , " "));
}

Dec 11 '05 #10

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

Similar topics

6
6328
by: mike | last post by:
Hello, After trying to validate this page for a couple of days now I was wondering if someone might be able to help me out. Below is a list of snippets where I am having the errors. 1. Line 334, column 13: there is no attribute "SRC" <bgsound src="C:\My Documents\zingwent.mids"> You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is...
5
2196
by: John Flynn | last post by:
hi all i'm going to be quick i have an assignment due which i have no idea how to do. i work full time so i dont have the time to learn it and its due date has crept up on me .. As follows: Objectives The purpose of this assignment is to have you practice the design of object-oriented classes, including one or more of the following concepts
0
1840
by: xunling | last post by:
i have a question about answering ..... this topic is "need help" what do i have to write at te topic line, !after i have klicked the "answer message" button ive tried many possibilities, all dont work "Re:" need help "Re:need help"
9
2937
by: sk | last post by:
I have an applicaton in which I collect data for different parameters for a set of devices. The data are entered into a single table, each set of name, value pairs time-stamped and associated with a device. The definition of the table is as follows: CREATE TABLE devicedata ( device_id int NOT NULL REFERENCES devices(id), -- id in the device
7
3306
by: Timothy Shih | last post by:
Hi, I am trying to figure out how to use unmanaged code using P/Invoke. I wrote a simple function which takes in 2 buffers (one a byte buffer, one a char buffer) and copies the contents of the byte buffer into the character pointer. The code looks like the following: #include <stdio.h> #include <stdlib.h> #include "stdafx.h" BOOL APIENTRY DllMain( HANDLE hModule, DWORD ul_reason_for_call,
15
4642
by: Cheryl Langdon | last post by:
Hello everyone, This is my first attempt at getting help in this manner. Please forgive me if this is an inappropriate request. I suddenly find myself in urgent need of instruction on how to communicate with a MySQL database table on a web server, from inside of my company's Access-VBA application. I know VBA pretty well but have never before needed to do this HTTP/XML/MySQL type functions.
16
2539
by: pamelafluente | last post by:
I am still working with no success on that client/server problem. I need your help. I will submit simplified versions of my problem so we can see clearly what is going on. My model: A client uses IE to talk with a server. The user on the client (IE) sees an ASP net page containing a TextBox. He can write some text in this text box and push a submit button.
8
2750
by: skumar434 | last post by:
i need to store the data from a data base in to structure .............the problem is like this ....suppose there is a data base which stores the sequence no and item type etc ...but i need only the sequence nos and it should be such that i can access it through the structure .plz help me .
0
3961
by: U S Contractors Offering Service A Non-profit | last post by:
Brilliant technology helping those most in need Inbox Reply U S Contractors Offering Service A Non-profit show details 10:37 pm (1 hour ago) Brilliant technology helping those most in need Inbox Reply from Craig Somerford <uscos@2barter.net> hide details 10:25 pm (3 minutes ago)
20
4284
by: mike | last post by:
I help manage a large web site, one that has over 600 html pages... It's a reference site for ham radio folks and as an example, one page indexes over 1.8 gb of on-line PDF documents. The site is structured as an upside-down tree, and (if I remember correctly) never more than 4 levels. The site basically grew (like the creeping black blob) ... all the pages were created in Notepad over the last
0
9424
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10223
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
10000
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
8879
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 project—planning, coding, testing, and deployment—without 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
6675
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5310
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
3571
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2815
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.