views:

87

answers:

2

Hi,

Are there books you know that covers data structure? how data should be properly structured (eg, in array or database).

thanks!

+1  A: 

Data structures and databases are different things.

Data structures are the way you structure the data in your code (for example, linked lists, binary trees etc...).

Databases are products that store data - not low level coding constructs.

One would use data structures when writing a database.

For books on data structures, The Art of Computer Programming by Knuth is a great resource.

For database design book recommendations, see the answers to this SO question.

Oded
cool. thanks for pointing that out. thanks for your recommendations! :)
Pennf0lio
A: 

Free ebook: Data Structures and Algorithms: Annotated Reference with Examples

There are several posts on SO on the subject of books for Data Structures and Algorithms...

Mitch Wheat