![]() |
![]() |
![]() |
|||||
![]() |
![]() |
![]() |
![]() |
![]() |
|||
| Welcome
to Tech Support Forum home to more then 136,000 problems solved. Issues
have included: Spyware, Malware, Virus Issues, Windows, Microsoft,
Linux, Networking, Security, Hardware, and Gaming Getting your
problem solved is as easy as: 1. Registering for a free account 2. Asking your question 3. Receiving an answer Registered members: * See fewer ads. * And much more..
|
| Want to know how to post a question? click here | Having problems with spyware and pop-ups? First Steps |
|
|||||||
| Programming A discussion forum for programs and programming used in tech-related businesses. |
![]() |
|
|
LinkBack | Thread Tools |
|
|
#1 (permalink) |
|
Registered User
Join Date: Oct 2005
Posts: 2
OS: WinXP
|
parallel arrays in C++
i would like to ask how to handle 2 sets of parallel arrays. name1 and name2 contains the same names, ID1 and ID2 contains the same IDs.
subject1: (sorted by name) name1 ID1 score1 A 3 45 B 4 50 C 2 60 D 1 30 subject2: (sorted by ID) name2 ID2 score2 D 1 25 C 2 90 A 3 75 B 4 40 how can i combine them to only one table with name, ID, score1 and score2 ? thanks! |
|
|
|
| Important Information |
|
Join the #1 Tech Support Forum Today - It's Totally Free!
TechSupportForum.com is a leading support website for your computer needs. We offer free, friendly and personalized computer support. Why pay to have your computer fixed when you can do it for free. Join TechSupportforum.com Today - Click Here |
|
|
#2 (permalink) |
|
Manager, Networking Forums
Join Date: Sep 2002
Location: S.E. Pennsylvania, US
Posts: 41,748
OS: Windows 7, XP-Pro, Vista, Linux
Blog Entries: 1
|
If they're sorted on a different field, that might be a bit difficult.
Sounds like a database project to me...If they have different data in them as well, it seems they're really different data arrays...
__________________
If TSF has helped you, Tell us about it! or Donate to help keep the site up! Microsoft MVP - Windows Desktop Experience |
|
|
|
|
|
#3 (permalink) |
|
Registered User
Join Date: Oct 2005
Posts: 2
OS: WinXP
|
the array name1 and array name 2 contains 3 same names .
array ID1 and arrayID2 contain 3 same IDs of the 3 names. only arrays score1 and score2 contain different scores. example: (*this is sorted by Name, arranged alphabetically) Name1 ID1 score1 Ana 001 12 Ben 003 90 Che 002 50 (*this is sorted by ID#, lowest to highest ID). ID is the same ID of the person above. Name2 ID2 score2 Ana 001 45 Che 002 37 Ben 003 80 the expected output should be: (sorted by ID) Name ID score1 score2 Ana 001 12 45 Che 002 50 37 Ben 003 90 80 |
|
|
|
![]() |
| Thread Tools | |
|
|