Articles in the Data Structures & Algorithms Category
Data Structures & Algorithms, Python »
This article deals with implementing Bubble Sort algorithm using Python programming language.
Bubble Sort is a simple sorting algorithm that compares each element in the list with its adjacent element and sort that pair of elements if they are not in order.
Data Structures & Algorithms, Python »
This article deals with implementing Hash Table using Python programming language. Hash Table is a data structure where data are stored in an associative manner (in key, value format). The key/index is unique. This kind of storage makes it easier to find the data later on.
Hash Table stores data into an array format. It uses a hashing function that generates a slot or an index to store/insert any element or value.
Data Structures & Algorithms, Python »
This article deals with the binary search algorithm implementation in Python programming language.
Binary search is an improvement to linear search. Binary search requires the searched list to be an ordered list, i.e. the list items should be sorted in ascending order (increasing order).
Data Structures & Algorithms, Python »
This article deals with the linear search or sequential search algorithm. It’s a very simple search algorithm.
Linear Search
Mukesh Chapagain is a graduate of Kathmandu University (Dhulikhel, Nepal) from where he holds a Masters degree in Computer Engineering. Mukesh is a passionate web developer who has keen interest in open source technologies, programming & blogging.