mirror of
https://github.com/TheAlgorithms/C
synced 2024-11-22 05:21:49 +03:00
docs: Minor documentation improvements (data_structures/queue.c) (#616)
This commit is contained in:
parent
6f385ed4a4
commit
d3bb124b90
@ -8,6 +8,9 @@
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// DATA STRUCTURES
|
||||
/**
|
||||
* Defining the structure of the node which contains 'data' (type : integer), two pointers 'next' and 'pre' (type : struct node).
|
||||
*/
|
||||
struct node
|
||||
{
|
||||
int data;
|
||||
|
Loading…
Reference in New Issue
Block a user