Code:
typedef struct a {
char *val;
struct a *prev;
struct a *next;
} a_pt;
a_pt* strt;
IMPORTANT: Make no assumptions regarding the allocation of a_pt or val.
|
Newbie Member
|
|
| 29Mar2007,02:59 | #1 |
|
Code:
typedef struct a {
char *val;
struct a *prev;
struct a *next;
} a_pt;
a_pt* strt;
IMPORTANT: Make no assumptions regarding the allocation of a_pt or val. Last edited by shabbir; 29Mar2007 at 08:12.. Reason: Code formatting |
|
Newbie Member
|
|
| 29Mar2007,03:10 | #2 |
|
I want it in C language.
|
|
Team Leader
|
![]() |
| 29Mar2007,05:00 | #3 |
|
I need 40,000. I want it in USD. Make no assumptions about exchange rate.
|
|
Go4Expert Founder
|
![]() |
| 29Mar2007,08:21 | #4 |
|
If you would have used the search feature above you would have found the following.
Basic operations in Linked List Swap two nodes of a linked list Move forward a node in linked list Insert a node in a linked list Double linked list Double circular linked list Circular linked list Priority Queue implementation using Linked List Queue implementation through linked list Doubly Linked List Implementation in C# and many more .... |
|
Go4Expert Member
|
|
| 3Apr2007,14:17 | #5 |
|
Never make mistake to ask for code. you may just Google for codes. you should better refer to
http://www.gtk.org/tutorial/x2037.html http://www.inversereality.org/tutori...nkedlists.html http://www.daniweb.com/techtalkforums/thread12036.html Never ask these questions. Better Google it....
|
|
Go4Expert Founder
|
![]() |
| 3Apr2007,14:51 | #6 |
|
Quote:
Originally Posted by wrecker |