|
-
Jan 31st, 2008, 09:03 PM
#1
Thread Starter
New Member
[RESOLVED] what are static and dynamic data?
Can someone define these in a very simple way? thank you
-
Jan 31st, 2008, 09:35 PM
#2
Re: what are static and dynamic data?
A static data structure is one whose size cannot change once it has been declared. In other words,
the size of the data structure must be known at the time the data structure is created. An array is a
good example of a static data structure.
A dynamic data structure is one whose size can change indefinitely once it has been declared. In
other words, the size of the data structure does not need to be known at the time data structure is
created. For the remainder of this course, we will focus on using and implementing dynamic data
structures such as linked lists, stacks, queues, and binary trees.
Taken from here
-
Jan 31st, 2008, 09:58 PM
#3
Thread Starter
New Member
Re: what are static and dynamic data?
Thank you kfcSmitty
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|