Month: May 2017

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”);…

28
May
2017

Training Set, Validation Set, Test Set

Training Set is a subset of the dataset used to build predictive models. Validation Set is a…

28
May
2017

C++ STL in Bangla

https://tanvir002700.wordpress.com/2016/04/15/c-stl-tricks1/  

28
May
2017

Machine Learning in Easy Way

Deep Learning, Deep Neural Network:  

26
May
2017

Data Structure: Queue

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

26
May
2017

Algorithm: BFS(Breadth First Search)

Theory: http://scanftree.com/Data_Structure/Breadth-First-Search Bangla: গ্রাফ থিওরিতে হাতেখড়ি-৪(ব্রেডথ ফার্স্ট সার্চ) Video: code implementation: Some other links may help: http://theoryofprogramming.com/2014/12/25/breadth-first-search-algorithm/…