Stack

A stack is a type of abstract data type. In a stack, data is stored in a sequential list format, and the primary operations, such as adding or deleting an element, occur at one end (top) of the stack. This is why it is referred to as Last In First Out (LIFO). The...
Asymptotic Notation

Asymptotic Notation

Suppose we want to add a large number of integers, how long will this operation take? The first question that comes to mind is the number of integers, let’s assume this number is n. Can we specify exactly how long this will take? Yes, we can for a specific...
Structure and Union

Structure and Union

Structure and union are both user defined data types of C programming language. User defined data type is a data type that the user i.e. the programmer will decide what type it will be. Sometimes we need to do some complex programs when using basic data types is...
Which version of Python should I use?

Which version of Python should I use?

Python has two major versions, which are updated separately. These versions are Python 2 and Python 3. Common Python users often find themselves in doubt about these versions. In continuation and considering new users, a brief discussion is presented here. Both...