home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #18 / NN_1992_18.iso / spool / comp / lang / c / 12573 < prev    next >
Encoding:
Text File  |  1992-08-20  |  1.5 KB  |  40 lines

  1. Xref: sparky comp.lang.c:12573 comp.lang.c++:12646
  2. Newsgroups: comp.lang.c,comp.lang.c++
  3. Path: sparky!uunet!paladin.american.edu!darwin.sura.net!ua1ix!ho08.eng.ua.edu!sdarbha
  4. From: sdarbha@ho08.eng.ua.edu (Subrahmanyam Darbha)
  5. Subject: Problem with linked lists
  6. Message-ID: <1992Aug20.150131.107476@ua1ix.ua.edu>
  7. Originator: sdarbha@ho08.eng.ua.edu
  8. Sender: news@ua1ix.ua.edu
  9. Nntp-Posting-Host: ho08.eng.ua.edu
  10. Organization: The University of Alabama, Tuscaloosa
  11. Julieline: see if this comes up.
  12. Date: Thu, 20 Aug 1992 15:01:31 GMT
  13. Lines: 25
  14.  
  15. I have a problem with making a three dimensional linked list
  16. Because I have to have a capability to expand the three dimensions to the       following limits [1000][1000][4]
  17. I can not directly declare pointers to all these elements because of the memory limitations..
  18. That is why I am having to use linked lists.
  19. For two-dimensional list I do the following
  20. struct array {
  21. Int ycoord;
  22. int val;
  23. struct array *next;
  24. }
  25.  
  26. Now I declare struct array *M[1000] this gives me the X-coordinate
  27. and the Ycoord gives me the Y-coordinate
  28. I have trouble expanding this to a three-dimensional list because I think
  29. it needs to be written with three *** in that case.
  30.  
  31. Any help in this is highly appreciated
  32. Thanks much
  33.  
  34. Subrahmanyam. 
  35.  
  36. -- 
  37. *************************** Who else But Darbha ******************************* 
  38. sdarbha@buster.eng.ua.edu     Res: (205) 349 - 5143   Off: (205) 348 - 9289
  39. *******************************************************************************
  40.