Fraction is a topic that most of the students don’t like because of the complexity involved in understanding and solving them. Most of the time, we need to convert the…
Algorithm
From banking apps to Siri and Google Assistant, AI has altered how the world works and lives. Data collection and storage is easier than before and industries such as finance,…
To learn how to create interesting and potentially popular applications, you need certain knowledge. In particular, it is necessary to master modern programming languages, understand their structure, study standards, and…
PYTHON programming Fleury’s Algorithm for printing Eulerian Path or Circuit – learn in 30 sec from microsoft awarded MVP,Eulerian Path is a path in graph that visits every edge exactly once.
C++ programming Fleury’s Algorithm for printing Eulerian Path or Circuit – learn in 30 sec from microsoft awarded MVP,Eulerian Path is a path in graph that visits every edge exactly once.
C Program Print BST keys in the given range – Binary Search Tree – Given two values k1 and k2 (where k1 < k2) and a root pointer to a Binary Search Tree.
Java Program Print BST keys in the given range – Binary Search Tree – Given two values k1 and k2 (where k1 < k2) and a root pointer to a Binary Search Tree.
C++ Algorithm – Length of the longest valid sub string – Stack – Given a string consisting of opening and closing parenthesis.
Design a stack with operations on middle element – Stack – The idea is to use Doubly Linked List (DLL). We can delete middle element in O(1) time
Reverse a Doubly Linked List – Doubly Linked List – A simple method for reversing a Doubly Linked List. All we need to do is swap prev and next pointers.