Tag: Data Structure
C Algorithms Library
Posted by M. Saqib | Last updated Jun 19, 2020 | C Programming Source Code |
Find the middle element of linked list in C
Posted by M. Saqib | Last updated Jun 26, 2020 | Data Structures |
Binary Trees
by M. Saqib | Last updated Jul 16, 2009 | Data Structures |
A binary tree is made of nodes, where each node contains a “left” pointer, a “right” pointer, and a data element. The “root” pointer points to the topmost node in the tree. The left and right...
Read MoreArrays as Data Structure in C/C++
by M. Saqib | Last updated Jun 26, 2020 | Data Structures |
Data Structure Articles
by M. Saqib | Mar 21, 2009 | Data Structures |
The basic aim of mycplus.com website was to develop a website for students of C/C++ and data structures. There are lots of tutorials and source code covering different aspects of C/C++ programming language. Today I have decided...
Read MoreJava Program to demonstrate of Linked List
This is a very simple implementation of linked list in java programming language. Very nice and well commented java source code for beginners.
Read MoreJava Program to show Stack Implementation
This is a simple Java program to demonstrate Stack data structure implementation. An object of type IntStack is a stack of real numbers, with the standard stack operations push(int N), pop(), and isEmpty(). A makeEmpty()...
Read MoreData Structures and Algorithm Analysis in C++ (2nd Edition)
by M. Saqib | Last updated Oct 19, 2008 | Computer Science Books |
In this second edition of his successful book, experienced teacher and author Mark Allen Weiss continues to refine and enhance his innovative approach to algorithms and data structures. Written for the advanced data structures...
Read MoreData Structures and Algorithm Analysis in Java
by M. Saqib | Last updated Oct 19, 2008 | Computer Science Books |
Provides a proven approach to algorithms & data structures using the exciting Java programming language as the implementation tool. With Java, the author highlights conceptual topics, focusing on ADTs and the analysis of...
Read MoreStack implementation with array
This java code basically implements stack functionality. It can Pop and Push an item in stack with the help of array. The item can only be an integer number and inernally the java program uses arrays to maintain items in stack....
Read More
Subscribe for updates
Advertisement
Recent Posts
-
Selection Sort Video – Algorithm ExplanationLast updated Jan 21, 2021 | Videos
-
Quicksort Video – Algorithm ExplanationLast updated Jan 21, 2021 | Videos
-
What Are The Best Programming Languages for Game Development?Last updated Jan 20, 2021 | Blog
-
Qfusion 3D Open Source Game EngineJan 19, 2021 | Blog
-
How to Read and Write Excel Files in C#Last updated Jan 19, 2021 | C# Programming Tutorials
-
The Pyrogenesis RTS and 3D Game EngineLast updated Jan 17, 2021 | Blog
-
Fundamental Principles of Data Integration for Database AdministratorsLast updated Jan 12, 2021 | Blog
-
What Makes Houseparty a Safe, Fun Way to Connect in 2021Last updated Jan 11, 2021 | Mobile Tech
-
C++ Wave File Writer from Text FileJan 7, 2021 | C++ Source Code
-
LRU and FIFO L1 Cache Implementation using CLast updated Jan 5, 2021 | C Programming Source Code