User Profile

Collapse

Profile Sidebar

Collapse
abunto
abunto
Last Activity: Jun 22 '13, 06:22 PM
Joined: Apr 1 '13
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • abunto
    replied to Nested Linked List
    in C
    thanks @weaknessforcat s I solved the problem with your proposals :D and now I know more about linked lists thanks to you.
    See more | Go to post

    Leave a comment:


  • abunto
    started a topic Nested Linked List
    in C

    Nested Linked List

    Hi everyone, I have data structure like below but I need help to add district to system , add homes to districts and lastly add persons to homes .

    Any suggestion ?
    Code:
    struct person{
    	char* person_name;
    	struct person *nextperson;
    };
    
    struct home{
    char* home_name;
    struct home *nexthome;
    struct person *_person_;
    struct person *head;
    struct person *curr;
    };
    ...
    See more | Go to post

  • if you use netbeans or eclipse you will learn quickly
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...