Home Blog Page 10
selection-sort

Selection sort in C

Start from the first element and iterate the array to find smallest element and swap first and that element.
insertion-sort

Insertion Sort in C

Consider first element of the array as sorted then loop through remaining elements and perform insertion like inserting an element is done in a sorted array.
bubble-sort

Bubble Sort in C

Bubble sort is one of the comparison based sorting algorithm.
sorting

Criteria for sorting analysis in Data Structures

Number of comparisons Number of swaps Adaptive behaviour - Checking if the data structure is already sorted or completely unsorted Stable - Maintaining order of duplicate values in sorted data structure Extra memory - Space Complexity
circular-linked-list

Circular Linked List

Circular linked list is similar to simple linked list, the main difference is that the last node points to the first node and not to null.
doubly linked list

Doubly Linked List in C/C++

A doubly linked list is similar to simple linked list, the main difference is that a doubly linked list node has one extra pointer pointing to previous node.
linked-list

Linked List In C/C++

Each node requires two data types, an int, char, float etc data type to store the value and a pointer to the next node to store the address of the node to which this node is pointing to.
array-abstract-data-type

Array as an Abstract Data Structure C/C++. (ADT)

We require a pointer to an array create it dynamically of inputed size from the user and a length of array till elements are present.
2d-array-c

Implementation of 2D array in C

An array can be created in a matrix form with n number of rows and m no of columns by using the concept of multi dimensional array.
increase-array-size-c

How to increase size of an array in C/C++ after declaration

Create a new array pointer and copy the contents of previous array pointer to this new array pointer and free/delete the previous pointer.