I'm studying Data Structures, and I'm not getting why stacks and queues need to be declared like:
struct stack *Stack;
(forget about the struct syntax)
I mean, why it is always declared as a pointer?
|
I'm studying Data Structures, and I'm not getting why stacks and queues need to be declared like:
(forget about the I mean, why it is always declared as a pointer? |
|||||||||||||||
|
|
They are not always declared like that! In general, declaring a variable as a pointer is useful for later allocating it dynamically. This can be due to a couple of reasons:
In your case, let's think of two different implementations of stack:
This is a terrible implementation, but assuming you have one like this, then you'd most probably not want to put it on the program stack. Alternatively, if you have:
You dynamically change the size of
Unless, you'd want to return it from a function. For example:
Personally, though, I would have declared the function like this:
and allocate the |
|||
|
|
|
It depends on how your stack structure is defined (not just the layout of the It's entirely possible to define a stack as a simple array and index, such as
However, fixed-sized arrays are limiting. One easy method of implementing a stack is to use a list structure:
The idea is that the head of the list is the top of the stack. Pushing an item onto the stack adds an element at the head of the list; popping an item removes that element from the head of the list:
Since |
|||||
|
|
No, they don't have to be declared as pointers. One can as well allocate stacks and queues as global variables:
myHash also includes a linked list for duplicate entries using indices. But as stated in the comments, if one has to add more elements to the structures, that was initially planned, then pointers come handy. An additional reason to declare structures as pointers is that it typically with pointers one can access both the complete structure as a whole, any individual element of the structure or some subset of the elements. That makes the syntax more versatile. Also when the structure is passed as a parameter to some external function, a pointer is inevitable. |
||||
|
|
|
There's really no need to implement stacks and queues with pointers - others have already stated this fact clearly. Look at @JohnBode 's answer for how a stack can be perfectly implemented using arrays. The thing is that modelling certain data structures (such as stacks, queues and linked lists) using pointers, allows you to program them in a very efficient way in terms of both execution speed and memory consumption. Usually an underlying array for holding a data structure is very good implementation choice if your use-cases require frequent random access to an element in the structure, given it's positional index (this is FAST with an array). However growing the structure past its initial capacity can be expensive AND you waste memory with the unused elements in the array. Insertion and deletion operations can also be very expensive since you may need to rearrange elements to either compact the structure or make space for the new elements. Since a queue and a stack don't have this random-acess requirement and you don't insert or delete elements in the middle of them, it is a better implementation choice to dynamically allocate each individual element "on the fly", requesting memory when a new element is required (this is what malloc does), and freeing it as an element is deleted. This is fast and will consume no more memory than it is actually needed by your data structure. |
|||||||||
|
|
As aleady pointed out it depends on how big the struct is. Another reason is encapsulation. The stack implementation might not expose the definition of struct stack in its header file. This hides the implementation detail from the user, with the downside that free store allocation is required. |
|||
|
|