Galih's Blog

This blog contains Galih Permana's writings and sharing the knowledge that I have learned. The writings on this blog may not always be related to IT but can also be about my hobbies or my favorite football club.

Send Me An Email!

Released

Data Structure

Single Linked List

A singly linked list is a type of linked list that is unidirectional, it can be traversed in only one direction from the head to the last node (tail).Each element in a linked list is called a node. A single node contains data and a pointer to the ​next node, which helps to maintain​ the structure of the list.

Soon

Data Structure

Double Linked List

a doubly linked list is a linked data structure that consists of a set of sequentially linked records called nodes. Each node contains three fields: two link fields (references to the previous and to the next node in the sequence of nodes) and one data field.

Soon

Basic C++

Pointer

C++ pointers are easy and fun to learn. Some C++ tasks are performed more easily with pointers, and other C++ tasks, such as dynamic memory allocation, cannot be performed without them.

Soon

Basic C++

Struct

C++ struct, short for C++ Structure, is an user-defined data type available in C++. It allows a user to combine data items of (possibly) different data types under a single name.