Thread: Books on Data Structures

  1. #1
    Registered User
    Join Date
    Dec 2011
    Posts
    3

    Books on Data Structures

    hello guys,
    Can anyone please recommend me some good books on Data Structures Using C Language.
    Thank you.
    Please help me ASAP.

  2. #2
    Registered User
    Join Date
    Dec 2011
    Posts
    795
    I really doubt that anyone's written a book solely about structs. It's a relatively simple concept that can be covered in a tutorial.

  3. #3
    Registered User claudiu's Avatar
    Join Date
    Feb 2010
    Location
    London, United Kingdom
    Posts
    2,094
    I don't think the OP was referring to C structs but rather to actual data structures (i.e. queues, stacks, heaps, graphs, etc). My advice is that these exist and therefore should be understood without a particular programming language in mind. Their implementation in C should be fairly simple once you understand what they are and how they operate.

    As for books, your guess is as good as mine, there are a ton out there. Just use Google, or alternatively if you would like to buy one, one of the many online book sellers.
    1. Get rid of gets(). Never ever ever use it again. Replace it with fgets() and use that instead.
    2. Get rid of void main and replace it with int main(void) and return 0 at the end of the function.
    3. Get rid of conio.h and other antiquated DOS crap headers.
    4. Don't cast the return value of malloc, even if you always always always make sure that stdlib.h is included.

  4. #4
    Technical Lead QuantumPete's Avatar
    Join Date
    Aug 2007
    Location
    London, UK
    Posts
    894
    I found this very useful when I was studying.
    "No-one else has reported this problem, you're either crazy or a liar" - Dogbert Technical Support
    "Have you tried turning it off and on again?" - The IT Crowd

  5. #5
    Registered User
    Join Date
    Dec 2011
    Posts
    9
    <Data Structures Using C> r krishnamoorthy ,G indirani kumaravel
    <data structures and algorithm analysis in C>

  6. #6
    Algorithm Dissector iMalc's Avatar
    Join Date
    Dec 2005
    Location
    New Zealand
    Posts
    6,318
    Personally, I would start here: List of data structures - Wikipedia, the free encyclopedia
    And then move on to here: Google

    Who needs that old paper material!
    My homepage
    Advice: Take only as directed - If symptoms persist, please see your debugger

    Linus Torvalds: "But it clearly is the only right way. The fact that everybody else does it some other way only means that they are wrong"

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Data structures
    By Elysia in forum C++ Programming
    Replies: 0
    Last Post: 05-17-2010, 03:35 PM
  2. Need some help regarding data structures
    By Afrinux in forum C Programming
    Replies: 15
    Last Post: 01-28-2006, 05:19 AM
  3. Replies: 2
    Last Post: 06-16-2005, 10:03 AM
  4. Any Good Data Structures Books?
    By YevGenius in forum C++ Programming
    Replies: 3
    Last Post: 05-26-2004, 07:49 AM
  5. Alternative Data Structures/Algorithm books
    By Mikro in forum C Programming
    Replies: 4
    Last Post: 04-11-2003, 10:04 AM

Tags for this Thread