Wednesday 13 November 2019

DBMS (Database Management System) Tutorials, Articles

Data Structure Tutorial


This section contains the data structure tutorial with the most common and most popular topics like Linked List, Stack, Queue, Tree, Graph etc.
Data structure is logical or mathematical organization of data; it describes how to store the data and access data from memory. Actually in our programming data stored in main memory(RAM) and To develop efficient software or firmware we need to care about memory. To efficiently manage we required data structure.
There are two different types of data structure:
  1. Linear Data Structure: In linear data structure data elements stored in sequential manner. Stack, Queue and Linked List are the types of linear data structure.
  2. Non Linear Data Structure: In Non-Linear data structure data elements are not stored in the sequence manner. Tree and Graph are the type of non-linear data structure.

Topics of Data Structure

List of Data Structure Tutorial topics...
Tree
  1. Introduction to Trees and its terminologies.
  2. Binary tree, Definition and its properties.
  3. Binary Tree representation (Sequential and Link).
  4. Traversal technique for Binary Tree.
  5. Insertion in Binary Search Tree (BST).
  6. Deletion in Binary Search Tree (BST).
  7. Find Height (Maximum Depth) of a Binary Search Tree (C++ program).
  8. Find the Number of Nodes in a Binary Search Tree (C++ program).
  9. Find the number of leaf nodes in a Binary Tree | Data Structure.
  10. Find whether two trees are structurally identical or not | Data Structure.
  11. AVL Tree, Left and right rotations.
  12. Introduction to B Tree and its operations
  13. Red Black Tree (Properties, Advantages, Inserting Nodes).
  14. Interval Tree in Data Structure.
  15. Threaded Binary Tree | Data Structure.
  16. Level Order Traversal on a Binary Tree | Data Structure.
  17. Segment Trees
Graph
  1. Introduction to Graph in Data Structure
  2. Representation of a Graph in Data Structure
  3. Breath First Search (BFS) of a Graph
  4. Depth First Search (DFS) of a Graph
  5. Cycle Detection in an Undirected Graph
  6. Cycle Detection in a Directed Graph
  7. Prim's Minimum Spanning Tree
  8. Count all the possible path between two vertices
Sorting
  1. Heap Sort (Introduction, Algorithm and Program using C).
Competitive Questions
  1. Aggressive Cows (On Binary Search)
  2. Find Maximum Range of Query using Segment Trees
Misc.

  1. Augmenting Data Structure.
  2. Tail Recursion and Tower of Hanoi using C.
  3. Asymptotic Notations.
  4. Hashing (Hash table, Hash functions and its characteristics).
  5. Hamiltonian Cycle in Data Structure.

Data Structure Tutorial


This section contains the data structure tutorial with the most common and most popular topics like Linked List, Stack, Queue, Tree, Graph etc.
Data structure is logical or mathematical organization of data; it describes how to store the data and access data from memory. Actually in our programming data stored in main memory(RAM) and To develop efficient software or firmware we need to care about memory. To efficiently manage we required data structure.
There are two different types of data structure:
  1. Linear Data Structure: In linear data structure data elements stored in sequential manner. Stack, Queue and Linked List are the types of linear data structure.
  2. Non Linear Data Structure: In Non-Linear data structure data elements are not stored in the sequence manner. Tree and Graph are the type of non-linear data structure.

Topics of Data Structure

List of Data Structure Tutorial topics...
Tree
  1. Introduction to Trees and its terminologies.
  2. Binary tree, Definition and its properties.
  3. Binary Tree representation (Sequential and Link).
  4. Traversal technique for Binary Tree.
  5. Insertion in Binary Search Tree (BST).
  6. Deletion in Binary Search Tree (BST).
  7. Find Height (Maximum Depth) of a Binary Search Tree (C++ program).
  8. Find the Number of Nodes in a Binary Search Tree (C++ program).
  9. Find the number of leaf nodes in a Binary Tree | Data Structure.
  10. Find whether two trees are structurally identical or not | Data Structure.
  11. AVL Tree, Left and right rotations.
  12. Introduction to B Tree and its operations
  13. Red Black Tree (Properties, Advantages, Inserting Nodes).
  14. Interval Tree in Data Structure.
  15. Threaded Binary Tree | Data Structure.
  16. Level Order Traversal on a Binary Tree | Data Structure.
  17. Segment Trees
Graph
  1. Introduction to Graph in Data Structure
  2. Representation of a Graph in Data Structure
  3. Breath First Search (BFS) of a Graph
  4. Depth First Search (DFS) of a Graph
  5. Cycle Detection in an Undirected Graph
  6. Cycle Detection in a Directed Graph
  7. Prim's Minimum Spanning Tree
  8. Count all the possible path between two vertices
Sorting
  1. Heap Sort (Introduction, Algorithm and Program using C).
Competitive Questions
  1. Aggressive Cows (On Binary Search)
  2. Find Maximum Range of Query using Segment Trees
Misc.

  1. Augmenting Data Structure.
  2. Tail Recursion and Tower of Hanoi using C.
  3. Asymptotic Notations.
  4. Hashing (Hash table, Hash functions and its characteristics).
  5. Hamiltonian Cycle in Data Structure.

Data Structure Tutorial


This section contains the data structure tutorial with the most common and most popular topics like Linked List, Stack, Queue, Tree, Graph etc.
Data structure is logical or mathematical organization of data; it describes how to store the data and access data from memory. Actually in our programming data stored in main memory(RAM) and To develop efficient software or firmware we need to care about memory. To efficiently manage we required data structure.
There are two different types of data structure:
  1. Linear Data Structure: In linear data structure data elements stored in sequential manner. Stack, Queue and Linked List are the types of linear data structure.
  2. Non Linear Data Structure: In Non-Linear data structure data elements are not stored in the sequence manner. Tree and Graph are the type of non-linear data structure.

Topics of Data Structure

List of Data Structure Tutorial topics...
Tree
  1. Introduction to Trees and its terminologies.
  2. Binary tree, Definition and its properties.
  3. Binary Tree representation (Sequential and Link).
  4. Traversal technique for Binary Tree.
  5. Insertion in Binary Search Tree (BST).
  6. Deletion in Binary Search Tree (BST).
  7. Find Height (Maximum Depth) of a Binary Search Tree (C++ program).
  8. Find the Number of Nodes in a Binary Search Tree (C++ program).
  9. Find the number of leaf nodes in a Binary Tree | Data Structure.
  10. Find whether two trees are structurally identical or not | Data Structure.
  11. AVL Tree, Left and right rotations.
  12. Introduction to B Tree and its operations
  13. Red Black Tree (Properties, Advantages, Inserting Nodes).
  14. Interval Tree in Data Structure.
  15. Threaded Binary Tree | Data Structure.
  16. Level Order Traversal on a Binary Tree | Data Structure.
  17. Segment Trees
Graph
  1. Introduction to Graph in Data Structure
  2. Representation of a Graph in Data Structure
  3. Breath First Search (BFS) of a Graph
  4. Depth First Search (DFS) of a Graph
  5. Cycle Detection in an Undirected Graph
  6. Cycle Detection in a Directed Graph
  7. Prim's Minimum Spanning Tree
  8. Count all the possible path between two vertices
Sorting
  1. Heap Sort (Introduction, Algorithm and Program using C).
Competitive Questions
  1. Aggressive Cows (On Binary Search)
  2. Find Maximum Range of Query using Segment Trees
Misc.

  1. Augmenting Data Structure.
  2. Tail Recursion and Tower of Hanoi using C.
  3. Asymptotic Notations.
  4. Hashing (Hash table, Hash functions and its characteristics).
  5. Hamiltonian Cycle in Data Structure.

Tuesday 12 November 2019

Python Tutorial – Learn Python Programming with examples

Python is a very simple yet very powerful object oriented programming language. The syntax of Python is very simple so a beginner can learn Python with ease. I have covered Python language in several separate python tutorials, this is the main Python tutorial page that has links to all the tutorials I have shared on Python. This tutorial is for both beginners and advanced Python learners.
I recommend you to read and practice the tutorials in the given order.

Python Tutorial

Basics:

1. Introduction to Python Programming
2. How to install Python on your system
3. Install PyCharm IDE on Mac OS X, Windows, Linux/Unix – This is the IDE which we are using in all the tutorials. You can write, compile and run Python programs on this IDE effortlessly.
4. Creating you first Python Project in PyCharm IDE
5. Python Comments

Control Statements and loops:

Data types:

Python functions:

Python OOPs:

Examples:

Try these examples to practice various Python programming topics.
Python programming examples