Results 1 to 3 of 3

Thread: [RESOLVED] what are static and dynamic data?

  1. #1

    Thread Starter
    New Member akatsuki.leader's Avatar
    Join Date
    Jan 2008
    Posts
    2

    Resolved [RESOLVED] what are static and dynamic data?

    Can someone define these in a very simple way? thank you

  2. #2
    PowerPoster kfcSmitty's Avatar
    Join Date
    May 2005
    Posts
    2,248

    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

  3. #3

    Thread Starter
    New Member akatsuki.leader's Avatar
    Join Date
    Jan 2008
    Posts
    2

    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
  •  



Click Here to Expand Forum to Full Width