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.
Easy Classified Ads website
By rozsa2 on Jul 10
Max Bid: $100


Read a Usenet Group on a web page
By corbing on Jul 10
Max Bid: Open to fair suggestions


Windows Service - Loads background Web page
By ironcladsecure on Jul 10
Max Bid: Open to fair suggestions


Cobol conversion
By 2good2 on Jul 10
Max Bid: Open to fair suggestions


Non-Profit web site backend DB
By stnwall on Jul 10
Max Bid: Open to fair suggestions


Professional Realty WebSite (<a href="
Click here to put this ticker on your own site and/or get live RSS newsfeeds

Open Work Categories.
Database 
(139 open)
   Access 
(52 open)
   MySQL 
(83 open)
   Oracle 
(9 open)
   SQL Server 
(49 open)
   Other DB 
(17 open)
Documentation / Tech Writing 
(14 open)
Data Entry 
(20 open)
Game Development 
(24 open)
Graphics / Art / Music 
(46 open)
   Graphics 
(54 open)
     Adobe AfterEffects 
(1 open)
     Adobe Photoshop 
(15 open)
     Adobe Premiere 
(3 open)
     3d Animation 
(13 open)
   Art (Misc.) 
(19 open)
   Music 
(11 open)
   3d Modeling 
(13 open)
Language Specific 
(92 open)
   ASP 
(54 open)
   ASP .NET 
(34 open)
   C# 
(39 open)
   C++ / C 
(103 open)
   Carbon (Mac OS) 
(2 open)
   Cocoa / Obj-C 
(2 open)
   Cold Fusion 
(11 open)
   Delphi 
(26 open)
   Java 
(55 open)
   JSP 
(7 open)
   Perl 
(39 open)
   PHP 
(85 open)
   XML/XSL 
(29 open)
   Visual Basic 
(132 open)
   Visual Basic .Net 
(52 open)
   Other 
(53 open)
Misc 
(29 open)
   CAD 
(3 open)
MultiMedia 
(37 open)
   Video Editing 
(4 open)
Network 
(43 open)
   Network Design 
(11 open)
   Network Implementation 
(13 open)
Platforms 
(75 open)
   Windows 
(160 open)
     MS Exchange 
(6 open)
     MS Office 
(12 open)
     Other 
(15 open)
   Darwin 
(1 open)
   Internet Browser 
(40 open)
   Linux 
(60 open)
   UNIX 
(27 open)
   Hand Held/PDA Programming 
(8 open)
Requirements 
(13 open)
Security 
(27 open)
Testing / Quality Assurance 
(16 open)
Web 
(146 open)
   Page Design 
(78 open)
   Flash 
(37 open)
   Web Services 
(70 open)
   Web (Other) 
(74 open)
Training 
(12 open)
   Computer Based 
(11 open)
Other
 
Other Sites

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

Linked List
Bid Request Id: 12069
Bookmark in my 'To Do' list
Posted by: kaitlyn72 (17 ratings)
(Software buyer rating 9.94)
Non-action Ratio: Very Good - 4.55%
Buyer Security Verifications: Good
Approved on: Mar 28, 2002
6:09:32 PM EDT
Bidding Closes: Mar 30, 2002
6:14:55 PM EDT
Viewed (by coders): 90 times
Deadline: 4/5/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: C++ / C
Enter chat room for this bid request
(0 active users at Jul 10, 2003 8:53:04 PM EDT)



Description:
The program is to employ a LINKED LIST to maitain a mailing list. Use a SIMPLE CLASS

Deliverables:
Complete and fully-functional working program(s) in executable form as well as complete source code of all work done. Complete copyrights to all work purchased. Input: There will be an unknow # of records in the data file (Located on A: drive under the name data4. Each line in the data file will begin with the a 2 letter code followed by any information required to perfrom that operation. A code ZZ will signify the end of the input file. Each reord in the list has the following structure: 1. Last name - 12 character long 2. First Name - 12 character long 3. Street Address - 20 character long 4. City - 12 character long 5. State - 2 character long 6. Zip Code - 5 character long If the data is not of the specified filed length, blanks will be used to fill the field. However there are no extra blanks between the fields. The 2 letter transaction codes and their meanings are: PN - Print the list in alphabetical order (A - Z) AL - Add the record to the list DL - Delete the record from the list CH - Change the information in the indicated field The format of the data for each code will be: AL - AL FirstName LastName StreetAddress City State ZipCode DL - DL FirstName LastName CH - CH FirstName LastName <field number> New Valuse PN - PN The field # in the Ch format indicates the field to be changed. For instance, a value of 2 would indicate that the persons LAST NAME needs to be changed while a value of 5 indicates a change to the STATE of residence. When a transaction code of AL is encountered you are to add the node to your liked list keeping the list in alphabetic order (A - Z) by last name. If the transaction code is a DL you are to remove that node from the list keeping the list in alphabetic order. If the code is a CH you must find the node and make the appropriate change. You must also insure that if the Last Name was changed, the list remains in the proper alphabetic order. When a code of PN is read, you are to print an alphabetized (A -Z) listing of all nodes by last name. Each person is unique. However 2 or more people may have the same last name OR the same firrst name BUT not both. If they have the same last name use the first name to determine order in the list. You amy assume all the data is valid. However, you must guard against adding a duplicate record, deleting a record that does not exist and/or making change to a nonexistent record. Output: Output will for this program will only be generated by the PN code contained in the data file or an attempt to perform one of the illiegal actionhs described in the INPUT section. You You do not have to print out a statement for each successful action. Each time the PN code is encountered a table, as shown in the example below, is to be printed showing the contents of each node in the mailing list. A new heading is to be included every time the list is printed. The heading is to include a report title such as "MAILING LIST" and each column is to have its own label heading indicating the type mof information in that column such as City, State, tec If an illiegal operation was attempted, the program is to print out a message to the user indicating that an illiegal oprestion was attempted and mus indiate the nature of the illegal operatio. Each output of the list is to start on seperate page. Error message must also start on a seperate page but consecutive error messages may appera on the same page.

Platform:
Visual c++

Must be 100% finished and received by buyer on:
Apr 5, 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 use C++ codes
Simple Program

WILL PROVIDE WINNING BIDDER:
EXAMPLE INPUT
EXAMPLE PROGRAM



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!
Alok Garg
(67 ratings)
in PUNE, MAHARASHTRA
India
Bid id: 134,518
 
$10 (USD) Mar 28, 2002
6:30:33 PM EDT
 8.74
(Superb)
   
Hi

Let me introduce myself as an expert C++ programmer. I have worked on many C++ assignments on this site with a rating of 10.

I am having expertise at data structures i.e. linked lists, Stacks , Queues etc..

I will be giving you the completed work in VC++ 6.0

With the kind of experience I am having you can be sure of quality work.

Looking forward to your quick response so that I can immediately start the task.

Kind Regards
 




Quick 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.

Anuj Gakhar
Rated a 9.98 on 101 jobs 
Securenext
Rated a 9.96 on 109 jobs 
Buddies
Rated a 9.82 on 80 jobs 
Andrei Remenchuk
Rated a 10 on 13 jobs 
Codman
Rated a 9.97 on 149 jobs 
Michael Sharp
Rated a 9.97 on 181 jobs 
D-N-S
Rated a 9.93 on 37 jobs 
markesh
Rated a 10 on 22 jobs 
teleCODERS
Rated a 9.93 on 67 jobs 
Tometa Software, Inc.
Rated a 10 on 10 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.