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