Sparse Polynomial representation and addition: Polynomial is an expression which is composed of terms, wherein terms are composed of coefficient and exponent. […]
Program to represent Sparse Matrix using arrays: /* Sparse Matrix representation using arrays */ #include <stdio.h> #include <stdlib.h> #define MAX 15 int […]
Array Representation: Column-major Row-major Arrays may be represented in Row-major form or Column-major form. In Row-major form, all the elements of the […]
Linear arrays Memory representation/address calculation Operations Traversal Search Linear Binary Insertion Insertion at a position Sorted insertion Deletion Deletion from a position […]
1. Introduction to Algorithms Input, output, definiteness, finiteness, effectiveness. Top-down & Bottom-up approaches Algorithm complexity Space complexity Time complexity Time space trade […]