home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
VSCPPv8.zip
/
VACPP
/
IBMCPP
/
samples
/
IOC
/
WORDBAG
/
WORDBAG.REA
< prev
next >
Wrap
Text File
|
1995-06-07
|
4KB
|
107 lines
SAMPLE - Word Bag
DESCRIPTION:
This program illustrates the use of a key sorted bag. The program
determines the number of words that have the same length in a
phrase. It stores the words of the phrase in key sorted bag that
it implements using the default class, IKeySortedBag. The program
makes the key the length of the word. Because of the properties
of a key sorted bag, it sorts the words by their length (the
key), and it stores all duplicate words.
TASK:
This program uses a key sorted bag to store and sort words
according to their length.
CONCEPT/FEATURE:
This program is a sample to demonstrate the use of the default
class IKeySortedBag.
PROJECT LOCATION:
Inside the IOC Samples folder (inside the VisualAge C++ Samples
folder).
SOURCE FILE LOCATION:
X:\ibmcpp\samples\ioc\wordbag
where X: is the drive you installed the samples and document
component of VisualAge C++.
HOW TO RUN THE SAMPLE:
FROM WITHIN THE WORKFRAME ENVIRONMENT:
To run the prebuilt project, open the Samples folder on your
OS/2 desktop then double-click on the project's icon to open
the project view of the sample. Click on the RUN button of
the project's toolbar.
FROM THE COMMAND LINE:
Simply type the name of the .EXE file, that is:
WORDBAG
If the sample fails to execute or abnormally ends, you can
get more information about the failure by turning on the
ICLUI trace. This is done by setting the environment
variable ICLUI_TRACE as follows:
SET ICLUI_TRACE=ON
SET ICLUI_TRACETO=STDERR
The second export controls where the trace information is
reported. With tracing turned on, ICLUI exception text will
be written to a standard error file. For example:
HELLO1 >HELLO1.OUT 2>&1
The exception data is now in the file hello1.out.
HOW TO BUILD THE SAMPLE PROJECT YOURSELF:
FROM WITHIN THE WORKFRAME ENVIRONMENT:
Open the Samples folder on your OS/2 desktop then
double-click on the project's icon to open the project view
of the sample. In the upper half of the project window you
will see the icons of the files associated with the sample.
From the Project pulldown, select Build -> Rebuild All. To run
the sample project, see HOW TO RUN THE SAMPLE PROJECT above.
FROM THE COMMAND LINE:
A command file is provided to allow rebuilding of the
WorkFrame projects from the command line. Simply type:
BUILD
To run the sample project, see HOW TO RUN THE SAMPLE PROJECT
above.
SOFTWARE/HARDWARE PREREQUISITES:
o IBM VisualAge C++
o OS/2 2.1 or Warp
o IBM or compatible 386 and up.
ADDITIONAL INFORMATION:
o For more information on the creation and use of projects in
the WorkFrame environment, see the VisualAge C++ for OS/2
User's Guide.
o For more information on the Collection Classes, see the
VisualAge C++ for OS/2 Open Class Library User's Guide.
Both books can be found online. To access an online book, simply
open the main VisualAge C++ desktop folder, then open the
Information Folder inside. To view a book, double-click on that
book's icon.
REQUIRED FILES - WORD BAG:
o wordbag.rea
o build.cmd
o wordbag.cpp
o wordbag.xpc
o toyword.h
o wordbag.exe