mirror of
https://github.com/TheAlgorithms/C
synced 2024-11-22 13:31:21 +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
|
// DATA STRUCTURES
|
||||||
|
/**
|
||||||
|
* Defining the structure of the node which contains 'data' (type : integer), two pointers 'next' and 'pre' (type : struct node).
|
||||||
|
*/
|
||||||
struct node
|
struct node
|
||||||
{
|
{
|
||||||
int data;
|
int data;
|
||||||
|
Loading…
Reference in New Issue
Block a user