Skip to content

Latest commit

 

History

History
20 lines (11 loc) · 673 Bytes

File metadata and controls

20 lines (11 loc) · 673 Bytes

Data-Structure

Here we use C / C++ / Python to implement some data structures. Notes from W3Schools.

Table of Contents

Example: C | C++

Structure is a user-defined data type in C or C++ that allows to combine data items of different kinds.

Pointer

Example: C | C++ | Python

A pointer is a variable whose value is the address of another variable, i.e., direct address of the memory location.