Category: Data Structure

07
Jul
2020

ArrayList in Java

ArrayList in Java: package com.zakilive; import java.util.ArrayList; public class Main { public static void main(String[] args) {…

05
Jun
2017

Algo – Linked List

Best Video Explained: code: some bugs  here but understood the implementation: #include<bits/stdc++.h> void display(void); void addatbegin(void); void…

31
May
2017

Algo DS: Circular Queue

  code: #include<stdio.h> #define size 4 int q[size]; int rear=-1; int front=-1; Enqueue(int item){ if((rear+1)%size==front){ printf(“Queue Overflow\n”);…

26
May
2017

Data Structure: Queue

Stack VS Queue difference:   code: /* * C Program to Implement a Queue using an Array…

17
Mar
2017

Stack

Vid: Code: Array Implementation: #include<iostream> using namespace std; #define MAX_SIZE 101 int A[MAX_SIZE]; int top=-1; //top==index of…

11
Mar
2017

DS Journery of my Alone

We learn data structure to organize data to manipulate data.