740
Page views
16
Files
1
Videos
0
R.Links

Icon
Assignments

Due Dates Is Over
Due Date:24-08-2020
How to create a Program and Analyze a program
The general steps for writing a program include the following: Understand the problem you are trying to solve Design a solution Draw a flow chart Write pseudo-code Write code Test and debug Test with real-world users Release program Iterate the steps for the next version
Due Dates Is Over
Due Date:23-09-2020
Stack and Queue
A linear data structure in which elements can be inserted and deleted only from one side of the list, called the top. A stack follows the LIFO (Last In First Out) principle. A Queue is a data structure follows the FIFO (First In First Out) principle.The insertion of an element in a queue is called an enqueue operation and the deletion of an element is called a dequeue operation.
Due Dates Is Over
Due Date:10-10-2020
Linked List
a linked list is a linear collection of data elements whose order is not given by their physical placement in memory. Instead, each element points to the next. It is a data structure consisting of a collection of nodes that together represent a sequence.
Due Dates Is Over
Due Date:26-10-2020
Binary tree representation & Tree Traversals
Definition and Representation in data structure Array& Linked List , and also visiting the nodes
Due Dates Is Over
Due Date:31-10-2020
Graphs
A Graph is a non-linear data structure consisting of nodes and edges. The nodes are sometimes also referred to as vertices and the edges are lines or arcs that connect any two nodes in the graph.