Giter Site home page Giter Site logo

anupsadhukhan / algorithm-concepts Goto Github PK

View Code? Open in Web Editor NEW

This project forked from ajaysharma388/algorithm-concepts

0.0 0.0 0.0 1.63 MB

This Repository contains the code for some core Algorithms and Data Structures used in the field of computer science domain.

C++ 98.38% C 1.62%

algorithm-concepts's Introduction

Algorithm-Concepts & Algorithm Course Curriculam.

4.1 Arrays.

1.  Find a pair in an array of size 'n', whose sum is X
2.  Find a majority element in an array of size 'n'
3.  Find the number occuring odd number of times in a given array of size 'n'
4.  Algorithm to reverse an array
5.  Algorithm to rotate array of size 'n' by 'd' elements
6.  Algorithm to segregate 0's and 1's in an array
7.  Find the maximum difference between two elements such that larger element appears after the smaller element
8.  Algorithm to merge an array of size 'n' into another array of size 'm+n'.
9.  Algorithm to find two repeating numbers in a given array
10. Algorithm to find duplicate elements in O(n) time and O(1) extra space, for a given array of size 'n'
11. Find the index in an array such that the sum of elements at lower indices is equal to the sum of elements at higher indices.
12. Algorithm to find the maximum difference of j - i such that a[j] > a[i], for a given an array of 'n' elements.
13. Algorithm to find the triplet whose sum is X
14. Algorithm to find a sub array whose sum is X
15. Algorithm to find the largest sub array with equal number of 0's and 1's
16. Algorithm to find the number of triangles that can be formed with three different array elements as three sides of triangles, for a given unsorted array of 	    n elements
17. Algorithm to find the smallest integer value that can't be represented as sum of any subset of a given array.
18. Algorithm to find the common element in given three sorted arrays
19. Algorithm to find the contiguous sub-array with maximum sum, for a given array of postive and negative numbers.
20. Given an array of integers, sort the array into a wave like array and return it. (arrange the element into a sequence such that a1>=a2<=a3>=a4<=a5----etc.
21. Algorithm to find the next greater number formed after permuting the digits of given number
22. Algorithm to find the sum of bit difference in all pairs that can be formed from array of n elements.
    Trapping rain water problem
23. Algorithm to find the minimum number of platforms required for the railway station so that no train waits according to arrival and departure time
24. Rotate 2-Dimentional array
25. Lock and Key problem
26. Rearrange an array so that a[i] becomes a[a[i]] with O(1) extra space
27. Traverse a matrix of integers in spiral form
28. Given an array consisting 0's, 1's and 2's, write a algorithm to sort it
29. Given a positive number X, print all jumping numbers(all adjacent digits in it differ by 1) smaller than or equal to X
30. Given an array and an integer 'k', find the maximum, for each and every contiguous subarray of size 'k'
31. Search an element in a sorted rotated array
32. Find the maximum value of a[j]-a[i]+a[l]-a[k], for every four indices i, j, k, l such that i< j < k < l.

4.2 Linked List

1.  Algorithm to find the nth node from end of the linked list
2.  Algorithm to find the middle node in a linked list
3.  Algorithm to find the intersection point of two linked lists
4.  Reversal of linked list
5.  Algorithm to detect loop in linked list
6.  Algorithm to find starting node of a loop in a linked list
7.  Algorithm to check given linked list is palindrome (or) not
8.  Algorithm to reverse alternative K nodes in a single linked list
9.  Algorithm to clone a linked list with next and random pointer are given...many more

4.3 Stack

1.  Reversal of a stack
2.  Algorithm to find next greater element on the right side of an array.
3.  Implemention of the following operations in stack in O(1) time. Push(), pop(), isEmpty(), isFull() and getMin().
4.  Algorithm to find the celebrity in minimum number of questions in a party.
5.  Algorithm to the stock span problem is a financial problem where we have a series of 'n' daily price for a stock and we need to calculate span of stock’s 	    price for all n days
6.  Algorithm to merge overlapping intervals
7.  Find the largest rectangular area possible in a given histogram.
8.  Given an integer array of size 'n', find the maximum of the minimum’s of every window size in the array.
9.  Calculate minimum number of bracket reversals needed to make an expression balenced.
10. Design a stack, to find getmin() in O(1) time and O(1) space complexity.
11. Find if an expression has duplicate or not....many more

4.4 Queues

1.  Given an array and an integer k, find the maximum for each and every contiguous subarray of size k.
2.  Implement LRU Cache.
3.  Find the first cicular tour that visits all petrol pumps
4.  Find the largest multiple of 3.

4.5 Trees

1.  Implement in order traversal without stack and recursion
2.  Convert a binary tree into its mirror tree
3.  Check if a given binary tree is sum tree or not
4.  Determine if the given two trees are identical or not
5.  Print out all of its roof to leaf paths in a given binary tree
6.  Find a lowest common ancestor of a given two nodes in a abinary search tree
7.  Find a lowest common ancestor of a given two nodes in a binary tree
8.  Level order traversal in spiral form
9.  Convert an arbitrary binary tree to a tree that holds children sum property
10. Find the Diameter of a BST
11. Construct tree from given inorder and post order traversal
12. Convert a Binary Tree to a circular DLL
13. Evaluation of expression tree
14. Print extreme node of each level of Binary Tree in alternative order
15. Print cousins of a given node in Binary Tree
16. Diagonal traversal of Binary Tree
17. Construct tree from ancestor matrix
18. Given a Binary Tree, find vertical sum of the nodes that are in same vertical line.
19. Find multiplication of sums of data of leaves at same level.
20. Given a binary tree, find maximum value we can get by subtracting value of node B from value of node A
21. Print nodes in a top view of Binary Tree.
22. Given a Binary Tree and a number k, remove all nodes that lie only on root to leaf path(s) of length smaller than k.
23. Serialize and deserialize an N-ary tree.
24. Reverse alternate levels of a perfect Binary Tree.
25. Print all nodes that are at distance k from a leaf node.
26. Custom tree problem.
27. Construct complete binary tree from its linked list representation.
28. Find next right nodes of given leafs in a binary tree.
29. Given a binary tree, print boundary nodes of the binary tree Anti-Clockwise starting from the root.
30. Convert a given tree to its sum tree.
31. Given a binary tree, find out if the tree can be folded or not.
32. Find largest sub tree having identical left and right sub tree.	
33. Convert a normal binary search tree to balanced BST.
34. Check if removing an edge can divide a binary tree in the form of n-ary tree.
38. locking and unlocking of resource arranged on the form of n-ary tree.

4.6 Heaps

1.  Find K largest (or smallest) elements in array.
2.  Tournament tree method using binary heap .
3.  Find a Median in a stream of integers.
4.  Sort a nearly sorted array(or k sorted).
5.  Given array representation of min Heap, convert it to max Heap.
6.  Check if a given binary tree is Heap.
7.  Find kth largest element in a stream.
8.  Print all elements in sorted order from row and column wise sorted matrix.
9.  Given n ropes of different length, connect with minimum cost.
10. Given k sorted arrays of size n each, merge them.
11. Design an efficient data structure for given operations find min(), findmax(), deletemin(), Insert(),delete().

4.7 Strings

1.  Find a maximum occurring character in the input string.
2.  Remove all duplicates from a given string.
3.  A program to check if strings are rotations of each other or not.
4.  Find the smallest window in a string containing all characters of another string
5.  Revere words in a given string.
6.  Find all distinct palindromic sub strings of a given string
7.  Remove all adjacent duplicate characters in a string
8.  Given a string, find the Run length encoding of given string.
9.  Check whether two strings are anagram of each other or not.
10. Find the first non-repeating character from a stream of characters.
11. Given an array of strings , find if the string can be of characters.
12. Find a excel column name from a given column number.
13. Convert one string to another using minimum number of given operation
14. Check if a given sequence of moves for a robot is circular (or) not.
15. Print concatenation of zig-zag string in 'n' rows.
16. Minimum number of palindromic sub sequence to be removed to empty a binary string.
17. All combinations of string that can be used to dial a number.

4.8 Divide & Conquer

1.  Find the median of two sorted arrays
2.  Count inversions in an array
3.  Find majority Element in a sorted array
4.  Find the maximum and minimum of an array using minimum number of comparisons
5.  The skyline problem	
6.  Given two binary strings that represent value of two integers, find the product of two strings.
7.  Given an array of integers. Find a peak element in it.
8.  Find the missing number in Arithmetic Progression
9.  Given an array of n points in the plane, find out the closest pair of points in the array.

4.9 Back Tracking

1.  Print all permutations of a given string.
2.  Find subset of elements that are selected from a given set whose sum adds up to a given number K.
3.  Given a set of n integers, divide the set in two subsets of n/2 sizes each such that the difference of the sum of two subsets is as minimum as possible.
4.  Solve Sudoku using backtracking.
5.  Given a maze, NxN matrix. A rat has to find a path from source to destination. Left top corner is the source and right bottom corner is destination. There 	    are few 
6.  cells which are blocked, means rat can¬not enter into those cells.

4.10 Pattern searching

1.  Given a text and a pattern, find all occurrences of pattern in a given text. Using naive approach.
2.  Given a text and a pattern, find all occurrences of pattern in a given text. Using Rabin-Karp algorithm.
3.  Given a text and a pattern, find all occurrences of pattern in a given text. Using Finite automata approach.
4.  Given a text and a pattern, find all occurrences of pattern in a given text. Using Boyer moore algorithm.
5.  Given a text and a pattern, find all occurrences of pattern in a given text. Using KMP algorithm.
6.  Given a string, find the longest sub string which is palindrome using manacher’s algorithm
7.  Find all occurrences of a given word in a matrix.

4.11 Greedy Algorithms

1.  Given an array of jobs with different time intervals. Find the minimum time to finish all jobs.
2.  Given a universe of n elements, collection of subsets. Find a minimum cost sub collection that covers all elements.
3.  Given n cities and distances between every pair of cities, select k cities to place warehouses, such that the maximum distance of a city to a warehouse is 	    minimized.

4.12 Dynamic Programming

1.  Find the length of the longest sub sequence of a given sequence such that all elements of the sub sequence are sorted in increasing order.
2.  Given two sequences, find the length of longest sub sequence present in both of them.
3.  Given a cost matrix and a position (m, n) , Find cost of minimum cost path to reach (m, n) from (0, 0).
4.  Coin change problem.
5.  Find the length of the longest palindrome sub sequence.
6.  Find th sum of maximum sum sub sequence of the given array.
7.  You have a rectangular grid of dimension 2 x n. You need to find out the maximum sum such that no two chosen numbers are adjacent , vertically, diagonally 	    (or) horizontally.
8.  Given an array A with n elements and array B with m elements. With m you have to insert (n-m) zero's in between array B such that the dot product of array 	    A and array B is maximum.
9.  Transform a string into palindrome on removing at most k characters from it.
10. Find the longest even length sub string such that sum of first and second half is same..
11. Count number of ways to reach a given score in a game.
12. Compute sum of digits in all number from 1 to n.
13. Collect maximum points in a grid using two traversals
14. Given a 2xn board and titles of size 2x1, count the number of ways to tile he given board using the 2x1 tiles..
15. Count the number of ways we can parenthesize the expression so that the value of expression evaluates to true.
16. Given a Binary Tree, find size of the Largest Independent Set(LIS) in it.
17. There are n stairs, a person standing at the bottom wants to reach the top. The person can climb either 1 stair or 2 stairs at a time. Count the number of 	    ways, the person can reach the top.
18. Find total number of non-decreasing numbers with n digits.
19. Egg dropping problem.
20. Given a rod of length n inches and an array of prices that contains prices of all pieces of size smaller than n. Determine the maximum value obtainable by 	    cutting up the rod and selling the pieces.
21. Given N jobs where every job is represented by Start Time, Finish Time, Profit or Value Associated. Find the maximum profit subset of jobs such that no two 	    jobs in the subset overlap.
22. Box stacking problem.
23. Given an input string and a dictionary of words, find out if the input string can be segmented into a space-separated sequence of dictionary words.
24. Given a binary matrix, find out the maximum size square sub-matrix with all 1s.
25. Find the maximum coins you can collect by bursting the balloons wisely.

4.13 Graphs

1.  Given a directed graph G=(V,E), find whether G has a cycle.
2.  Given an undirected graph G=(V,E), find whether G has a cycle or not.
3.  Given a directed graph G=(V,E), find whether there is path between two vertices vi and vj.
4.  Given a 2D boolean matrix, find the number of islands.
5.  Given a connected undirected graph, find all the articulation points
6.  Given an undirected graph, find all the bridges in the graph.
7.  Given a directed graph, find all the strongly connected components.
8.  Given a weighted directed acyclic graph, find the shortest path from a vertex to all the other vertices.
9.  Given a weighted directed acyclic graph, find the longest path from a vertex to all the other vertices.
10. Check whether a given graph is bipartite or not.
11. Find number of connections a person till nth level.

4.13 Bit Manipulation

4.14 Mathematical Algorithms

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.