no, someone won't send you a prog. Not anyone in their right mind, anyhow. You can find it by googling, Basically, a linked list is a list of nodes, with pointers to the next node in the list, and at the end the pointer is set to null. When you wish to remove a node, you can set the pointer that points to the node to the pointer of the next node. So, say you have nodes a b c and d, and you wish to remove b a will point to b, and b points to c, before the node removal. You will remove b, and set a to point to the node that b points to, which would be c. HTH, Thanks, ~~TheCreator~~ Visit TDS for quality software and website production http://tysdomain.com visit the piratecafe for programming related resources: http://piratecafe.net msn: [EMAIL PROTECTED] skype: st8amnd127 ----- Original Message ----- From: h4hafiz1 To: [email protected] Sent: Saturday, May 24, 2008 1:26 PM Subject: [c-prog] link list
how can i insert,delete in link list at start,mid and at end.And how to print.will sme one sne me aprog __________ NOD32 3128 (20080523) Information __________ This message was checked by NOD32 antivirus system. http://www.eset.com [Non-text portions of this message have been removed]
