How Software Gets Done  


Login

Software Buyers
Request bids
Search coders
My Buyer Account
Buyer help
Buyer articles
Buyer FAQ
Latest news
 
Software Coders
Newest open work
Browse all work
Search all work
My Coder Account
Coder help
Coder articles
Coder FAQ
Latest news
 
Affiliates
My Affiliate Account
Affiliate help
Affiliate FAQ
Latest news
 
Newest Bid Requests.
(See all)
Simple data harvest.
By blong on Sep 10
Max Bid: Open to fair suggestions


Collection Database
By TheBestCoder on Sep 10
Max Bid: Open to fair suggestions


Access Database modifications
By gstamant on Sep 10
Max Bid: $50


Non linear optimization
By AlternativeSoft on Sep 10
Max Bid: $1,000


Excel question
By zoomer on Sep 10
Max Bid: $10


Capture data from Java Applets
By SoftwarExchange on Sep 10
Max Bid: $20


Click here to put this ticker on your own site and/or get live RSS newsfeeds

Open Work Categories.
Database 
(172 open)
   Access 
(60 open)
   MySQL 
(100 open)
   Oracle 
(12 open)
   SQL Server 
(73 open)
   Other DB 
(21 open)
Documentation / Tech Writing 
(27 open)
   Language (Human) Translations 
(11 open)
Data Entry 
(35 open)
Game Development 
(16 open)
Graphics / Art / Music 
(52 open)
   Graphics 
(62 open)
     Adobe AfterEffects 
(8 open)
     Adobe Photoshop 
(26 open)
     Adobe Premiere 
(7 open)
     3d Animation 
(22 open)
   Art (Misc.) 
(11 open)
   Music 
(9 open)
   Photography 
(8 open)
   3d Modeling 
(15 open)
Language Specific 
(130 open)
   Assembly / Machine language 
(10 open)
   ASP 
(67 open)
   ASP .NET 
(72 open)
   C# 
(73 open)
   C++ / C 
(135 open)
   Carbon (Mac OS) 
(6 open)
   Cocoa / Obj-C 
(4 open)
   Cold Fusion 
(16 open)
   Delphi 
(49 open)
   Java 
(84 open)
   JSP 
(15 open)
   Perl 
(42 open)
   Python 
(6 open)
   PHP 
(111 open)
   XML/XSL 
(35 open)
   Visual Basic 
(172 open)
   Visual Basic .Net 
(110 open)
   Other 
(73 open)
Misc 
(35 open)
   Middleware 
(1 open)
   CAD 
(6 open)
MultiMedia 
(34 open)
   Video Editing 
(13 open)
Network 
(34 open)
   Network Design 
(6 open)
   Network Implementation 
(5 open)
Platforms 
(74 open)
   Windows 
(194 open)
     MS Exchange 
(8 open)
     MS Office 
(18 open)
     Other 
(11 open)
   Darwin 
(3 open)
   Embedded Systems 
(3 open)
   Hand Held/PDA Programming 
(11 open)
   Internet Browser 
(57 open)
   Linux 
(52 open)
   Lotus Notes / Domino 
(2 open)
   UNIX 
(25 open)
Requirements 
(15 open)
Security 
(28 open)
Testing / Quality Assurance 
(20 open)
Web 
(188 open)
   Page Design 
(86 open)
   Flash 
(53 open)
   Marketing 
(3 open)
     Search Engine Optimization 
(1 open)
     Marketing (Other) 
(1 open)
   Web Services 
(87 open)
   Web (Other) 
(97 open)
Training 
(11 open)
   Computer Based 
(10 open)
Other
 
Other Sites

Download the free Rent A Coder IE toolbar!
 
Show Bid Request

C++ Address Book !!! Need Help Yesterday!!!
Bid Request Id: 12207
Bookmark in my 'To Do' list
Posted by: GenXcoder (8 ratings)
(Software buyer rating 9.25)
Non-action Ratio: Very Good - 8.33%
Buyer Security Verifications: Good
Approved on: Mar 30, 2002
2:25:35 PM EDT
Bidding Closes: Mar 31, 2002
5:00:00 PM EDT
Viewed (by coders): 250 times
Deadline: 4/3/2002
TIME EXPIRED
Phase:
100% of work completed and accepted. Coder has been paid.
Max Accepted Bid: Bidding is closed
Project Type: Personal Project / Homework Help
Bidding Type: Open Auction
Categories: Windows, Language Specific, C++ / C, Platforms
Enter chat room for this bid request
(0 active users at Sep 10, 2003 8:26:09 PM EDT)

Description:
Write an object-oriented console program in C++ to keep track of a collection of name and phone
number combinations. This telephone directory program must provide the user with the options stated below.



Deliverables:
USER OPTIONS:
1) The user can add a new name and phone number entry to the directory (upon selecting this option the program should query the user to obtain the information).

2) The user can delete an entry from the directory by specifying the last name of the person to be removed. This option will give the user the chance to cancel the deletion after the selection is presented. If more than one entry matches the specified last name, then each entry will be presented to user for them to delete or save.

3) The user can print to screen the formatted name and phone number of all entries matching a given last name. The following format should be used:

Last_name, First_name (407)555-1111

4) The user can print to the screen all current entries in the directory, in alphabetical order based on the last name.

5) The user must also have a means of exiting the program. The program should loop until the user chooses to exit.

Your program must develop the following classes: PhoneEntry, LinkedList, and PhoneDirectory.

CLASS DISCUSSION:
1) The PhoneEntry class encapsulates the name and phone number combination. This class has the attributes first name, last name and phone number. This class provides behaviors for printing the entry information and doing comparisons.

2) The LinkedList class should be a generic linked list class that expands upon the LinkedList class presented in class by providing behaviors for: inserting elements any where in the list (not just the head), removing elements from anywhere in the list, and getting elements from anywhere in the list without removing the element from the list.

The LinkedList class should be generic enough to store more than simply integer values. This can be accomplished using a void pointer as the data element in the node structure.

struct Node{
void *pItem;
Node *pNext;
};

The void pointer can be used to point to any data type including objects. Use this node structure in your LinkedList class.

3) An instance of the PhoneDirectory class will be used to contain the collection of name and phone
number entries. The LinkedList class must be used to store the actual references to the PhoneEntry objects, but the PhoneDirectory class is used to provide a more specific interface than the generic
LinkedList class.

The PhoneDirectory class will provide behaviors for: Adding new entries to the directory (entries should be inserted into the linked list so that referenced list items are sorted alphabetically based on the last name), removing entries from the directory, printing selected entries from the directory and printing all directory entries.

Make use of the string class. This class
allows you to create character string objects and provides methods for performing comparisons.
------------------------------------------------------
I need a complete and fully-functional working program in executable form as well as complete source code of all work done.

Complete copyrights to all work purchased.


Platform:
Windows (95, 98, Me, NT)

Must be 100% finished and received by buyer on:
Apr 3, 2002 EDT
Deadline legal notes: All times are expressed in the time zone of the site EDT (UT - 5). If the buyer omitted a time, then the deadline is 11:59:59 PM EDT on the indicated date.

Special Conditions / Other:
Must be completed by 4/3/2002 by 5:00pm EST.

Additional Files:
This bid request includes IMPORTANT additional attached files. Please download and read fully before bidding.



Remember that contacting the other party outside of the site (by email, phone, etc.) on all business projects < $500 (before the buyer's money is escrowed) is a violation of both the software buyer and seller agreements. We monitor all site activity for such violations and can instantly expel transgressers on the spot, so we thank you in advance for your cooperation. If you notice a violation please help out the site and report it. Thanks for your help.
 
Bidding/Comments:
All monetary amounts on the site are in United States dollars.
Rent a Coder is a closed auction, so coders can only see their own bids and comments. Buyers can view every posting made on their bid requests.

See all rejected bids (and all comments)
Name   Bid Amount 
 
Date   Coder Rating  
This bid was accepted by the buyer!
Odyssey
(27 ratings)
in Bangalore, Karnataka
India
Bid id: 135,928
 
$37 (USD) Mar 30, 2002
3:08:05 PM EDT
 9
(Superb)
   
Hi,
Seems you want the code Quickly (by 3rd April). I can finish the code within the time you specified. See my previous works for the promptnes. If you believe , select my bid.

Thanks and Regards,
Odyssey
 
 
 
 
  There are 11 private replies to/from Odyssey. Click here to view them.
 




Bid Request Search
 Advanced Search
Newest Open Work
Latest News  
Credentials


 

 
Rent A Coder upholds the rigorous business practices required to be both a BBB member and Square Trade vendor.
  • All customer issues addressed within 2 days
  • Openly disclosed pricing and return policies
  • Participation in mediation at buyer request
  • Superior selling track record
This site is verified through its parent company, Exhedra Solutions, Inc.
 
Top Coders.

Securenext
Rated a 9.97 on 120 jobs 
Buddies
Rated a 9.84 on 91 jobs 
Codman
Rated a 9.97 on 158 jobs 
Andrei Remenchuk
Rated a 10 on 14 jobs 
D-N-S
Rated a 9.93 on 38 jobs 
hernest
Rated a 10 on 121 jobs 
markesh
Rated a 10 on 22 jobs 
Maxnet Technologi es Private Limited
Rated a 9.93 on 84 jobs 
florentin
Rated a 10 on 56 jobs 
PSergei
Rated a 9.76 on 102 jobs 

See all top coders...

(What makes a top coder?)

Top Exam Scorers

 
Other
Rent A Coder is PayPal verified through its parent company, Exhedra Solutions, Inc.

Created in partnership with:

 

Affiliate Sites
Latest News | About Us | Kudos | Feedback/Contact    Affiliates | Advertise    Privacy | Legal

Copyright © 2001, Exhedra Solutions, Inc. All rights reserved.
By using this site you agree to its Terms and Conditions.
"Rent A Coder" (tm), "Safe Project Escrow" (tm) and "How Software Gets Done" (tm)
are trademarks of Exhedra Solutions, Inc.