wpe41.gif (23084 bytes)CIS3355: Business Data Structures
Fall, 2008
 

Pseudonym: gaseld
Website: http://www.cs.cf.ac.uk/Dave/C/node11.html
Title: Dynamic Memory Allocation and Dynamic Structures
Submitter:
Date: 04/28/08
Time: 02:13:46 PM

Comments

Dynamic allocation is a pretty unique feature to C (amongst high level languages). It enables us to create data types and structures of any size and length to suit our programs need within the program

Pseudonym: stardog
Website: Dynamic Memory
Title: http://www.cplusplus.com/doc/tutorial/dynamic.html
Submitter:
Date: 04/29/08
Time: 01:46:30 PM

Comments

This website provided a different perspective of DMA.

Pseudonym: arnaryi
Website: http://www.cplusplus.com/doc/tutorial/dynamic.html
Title: Dynamic Memory
Submitter:
Date: 04/29/08
Time: 01:57:14 PM

Comments

memory is normally decided by declared variables prior to runtime. in the event that a necessary amount of memory space is availble is my understanding what dynamic memory allocation is. this article discusses how dynamic memory is used in C++ to integrate the operators new and delete. the first expression is used to contain one single element of type type and the second expression is used to assign a block of elements type type.

Pseudonym: Sport
Website: http://www.learning-computer-programming.blogspot.com/2007/06/introduction-to-dynamic-memory.html
Title: Introduction to Dynamic Memory Allocation
Submitter:
Date: 04/29/08
Time: 02:11:27 PM

Comments

Dynamic memory allocation is used when a user wants t set the ranges of certain numbers, for example phone numbers. By using the DMA only the ceratin amount of memory can be allocated. Dynamic memory is allocatied by the new keyboard. if the user is using C++ it will not free up memory through dynamic allocation.

Pseudonym: efrimix
Website: http://www.cplusplus.com/doc/tutorial/dynamic.html
Title: Dynamic Memory Allocation
Submitter:
Date: 04/29/08
Time: 02:14:22 PM

Comments

In this page we can find out details about what dynamic memory allocation is and how it works.

Pseudonym: safadoo25
Website: http://en.wikipedia.org/wiki/Dynamic_memory_allocation
Title: dynamic memory allocation
Submitter:
Date: 04/29/08
Time: 04:05:33 PM

Comments

Good site on basic explanation of dynamic memory as opposed to static and automatic memory. There are good links to other terms associated with memory such as run time, malloc, and heap.

Pseudonym: chulo12
Website: http://en.wikipedia.org/wiki/Dynamic_memory_allocation
Title: Dynamic memory allocation definition
Submitter:
Date: 04/29/08
Time: 09:15:05 PM

Comments

It is a good definition of what a dynamic memory allocation according to the wikipedia. It gives some details and references.

Pseudonym: rockfer
Website: http://www.cplusplus.com/doc/tutorial/dynamic.html
Title: How linked dynamic memory works
Submitter:
Date: 04/30/08
Time: 10:16:36 AM

Comments

This link has detailed explanations on dynamic memory.

Pseudonym: bass5hartke
Website: http://www.cplusplus.com/doc/tutorial/dynamic.html
Title: In order to request dynamic memory we use the operator new. new is followed by a data type specifier and -if a sequence of more than one element is required- the number of these within brackets []. It returns a pointer to the beginning of the new block of memory allocated
Submitter:
Date: 04/30/08
Time: 01:15:27 PM

Comments

I like this website because it really supports what we covered in class and can take you futher!!

Pseudonym: keko10
Website: http://www.eecs.harvard.edu/~ellard/Q-97/HTML/mem/node3.html
Title: Dynamic Memory Allocation
Submitter:
Date: 04/30/08
Time: 04:53:28 PM

Comments

The website explains what Dynamic Memory Allocation is and also provides Malloc function, size and free function gives a good detail on Dynamic Memory

Pseudonym: Computer Teck Man
Website: http://www.cs.cf.ac.uk/Dave/C/node11.html
Title: Dynamic Memory allocation and Dynamic Structures
Submitter:
Date: 04/30/08
Time: 07:25:33 PM

Comments

This website talk about some of the basic features of Dynamic Memory allocation. It also gives some example and exercises to try out.

Pseudonym: Pixelation
Website: http://www.cplusplus.com/doc/tutorial/dynamic.html
Title: Dynamic Memory Allocation
Submitter:
Date: 04/30/08
Time: 11:07:36 PM

Comments

The essential basics of understanding dynamic memory allocation

Pseudonym: Napalm_R
Website: http://www.codersource.net/c++_dynamic_memory_allocation.aspx
Title: Dynamic memory allocation in C++
Submitter:
Date: 04/30/08
Time: 11:24:04 PM

Comments

This website gives a brief tutorial for dynamic memory allocation in c++.

Pseudonym: icequeen
Website: http://en.wikipedia.org/wiki/Dynamic_memory_allocation
Title: Dynamic memory allocation
Submitter:
Date: 05/01/08
Time: 07:10:23 PM

Comments

This site goes into detail about dynamic memory allocation, with an explicit definition, as well as everyday examples. This article also includes related articles about related terms, such as malloc. There are also links to several external sites about the subject.

Pseudonym: ochoa11
Website: http://www.cplusplus.com/doc/tutorial/dynamic.html
Title: Dynamic Memory
Submitter:
Date: 05/01/08
Time: 09:06:32 PM

Comments

Explains what dynamic memory is and how to use. how to use the new operators. This page also have other link that are helpful for us because are topic that we know sucha as arrays, data structures, etc.

Pseudonym: wizard
Website: http://www.hotcoding.com/Programming/cplus/26556.html
Title: Dynamic memory allocation in C++
Submitter:
Date: 05/01/08
Time: 10:15:28 PM

Comments

Further explains memory allocation

Pseudonym: wizard
Website: http://library.thinkquest.org/C005618/text/binarytrees.htm
Title: An Introduction to Data Structures with C++
Submitter:
Date: 05/01/08
Time: 10:20:28 PM

Comments

Asthe title suggest, the site is a basic overview of binary tree, The sie also contains some programs that shops how a birary tree operation works.

Pseudonym: lizard
Website: http://www.csi.uottawa.ca/~holte/T26/dyn-mem-alloc.html
Title: Memory Allocation
Submitter:
Date: 05/02/08
Time: 11:34:12 AM

Comments

This webstie is useful in understanding the dynamic memory allocation. it goes through a decription and then gives examples along the way. It would help in studies of CIS classes.

Pseudonym: Bettyboop
Website: http://www.cs.cf.ac.uk/Dave/C/node11.html
Title: Dynamic Memory Allocation and Dynamic Structures
Submitter:
Date: 05/02/08
Time: 10:31:35 PM

Comments

Gives more detail on how we create data type structures to meet our programs needs.

Pseudonym: Lightbit
Website: http://www.cs.utah.edu/dept/old/texinfo/glibc-manual-0.02/library_3.html
Title: Memory Allocation
Submitter:
Date: 05/08/08
Time: 10:33:19 AM

Comments

This website defines memory allocation. It explains about the different types of memory allocation and the most general dynamic allocation facility which is malloc.

Pseudonym: GOTINAD
Website: http://en.wikipedia.org/wiki/Dynamic_memory_allocation
Title: WIKIPEDIA The free encyclopedia
Submitter: Daniela Ito
Date: 05/08/08
Time: 02:16:07 PM

Comments

I has a very good information about Dynamic memory allocation

Pseudonym: Copernicus
Website: http://www.technoplaza.net/programming/lesson6.php
Title: Lesson 6: Dynamic Memory Allocation
Submitter:
Date: 05/08/08
Time: 03:30:30 PM

Comments

Gives you back round information and the difference between Dynamic Memory and static memory

Pseudonym: oleic*~
Website: http://www.cplusplus.com/doc/tutorial/dynamic.html
Title: Dynamic Memory
Submitter:
Date: 11/21/08
Time: 12:58:56 PM

Comments

Explains how to obtain dynamic memory using the operators new and delete.

Pseudonym: st@r
Website: http://www.computerhope.com/jargon/d/dynamica.htm
Title: Dynamic allocation definition
Submitter:
Date: 11/25/08
Time: 10:43:29 AM

Comments

gives a simple and brief definition

Pseudonym: Krelic
Website: http://www.eskimo.com/~scs/cclass/notes/sx11.html
Title: Chapter 11: Memory Allocation
Submitter:
Date: 11/28/08
Time: 10:07:40 PM

Comments

This is a four page description of dynamic memory allocation.

Pseudonym: penacho4
Website: http://en.wikipedia.org/wiki/Dynamic_memory_allocation
Title: Dynamic memory allocation
Submitter:
Date: 12/03/08
Time: 03:34:41 PM

Comments

This website explains what dynamic memory means. So this is a good website to visit to understand what dynamic memory means.

Pseudonym: meezan85
Website: http://www.ehow.com/how_2240558_perform-dynamic-memory-allocation-c.html
Title: How to Perform Dynamic Memory Allocation in C++
Submitter:
Date: 12/03/08
Time: 10:22:36 PM

Comments

This site gives detailed information on how to perform dynamic memory allocation in c++.

Pseudonym: gvoLreQmunzdk
Website: http://huqvetertazu.com/
Title: omNUsYtXsgJLFdkYA
Submitter: YVZKSKNshwacNi
Date: 04/29/10
Time: 02:59:43 PM

Comments

4LCwPk <a href="http://avzncpypzgya.com/">avzncpypzgya</a>, [url=http://kpffdbbwldwd.com/]kpffdbbwldwd[/url [link=http://uupmtpzqbymz.com/]uupmtpzqbymz[/link http://oeufbqvtathv.com/

Pseudonym: hEpuPkMZA
Website: http://www.yahoo.com/
Title: iluNJdEzuYNcFuzZS
Submitter: ppdJJcPLpAJKmq
Date: 04/17/11
Time: 07:27:45 PM

Comments

I'm not eslaiy impressed. . . but that's impressing me! :)

Pseudonym: lnWDuCVVC
Website: http://www.yahoo.com/
Title: TMrMYcrEmeNmXr
Submitter: HaZRMQhpIjAiVVuFgiw
Date: 11/29/12
Time: 07:49:45 AM

Comments

AFAICT you've covered all the bases with this asnwer!

Pseudonym: ofTqOtRpNrllGzQWEQ
Website: http://www.facebook.com/profile.php?id=100003407070929
Title: nZePyFsWvu
Submitter: KUqCEoRRIoPDd
Date: 12/01/12
Time: 01:58:54 AM

Comments

I've heard through vauiors people that you can get an adsense account through blogger. Is this true? I have a blog, it's been over 2 years and I write my own stuff almost everyday. I've been to blogspot sites that are on the same level as me and when I asked how they got ads on their blog, they went through the monetize option on blogger and just followed through. Now when I try this out they tell me I need a verified account. On top of this, I think I just made an account but google disabled it because , Idk? I never had a verified account so I couldn't have been busted for illegal clicks if I've never had one as up. I'm so lost. Anyone?

Pseudonym: Home
Website: http://www.abcacaiberrypills.com/
Title: Home
Submitter: Home
Date: 05/18/14
Time: 08:01:52 PM

Comments

Dynamic Memory Allocation

Pseudonym: abcacaiberrypills
Website: http://www.abcacaiberrypills.com/
Title: abcacaiberrypills
Submitter: abcacaiberrypills
Date: 05/18/14
Time: 09:59:22 PM

Comments

Dynamic Memory Allocation

Pseudonym: dreambodystore
Website: http://www.dreambodystore.com/
Title: dreambodystore
Submitter: dreambodystore
Date: 05/19/14
Time: 03:36:12 AM

Comments

Dynamic Memory Allocation

Pseudonym: paiyoujitea
Website: http://www.paiyoujitea.org/
Title: paiyoujitea
Submitter: paiyoujitea
Date: 05/22/14
Time: 09:35:05 PM

Comments

Dynamic Memory Allocation

Pseudonym: 2 Day Diet Pills
Website: http://www.2daydietslimmingstore.com/
Title: 2 Day Diet Pills
Submitter: 2 Day Diet Pills
Date: 07/02/14
Time: 04:57:49 PM

Comments

Dynamic Memory Allocation