Introduction to Graph in Data Structures : Graph Theory #1

preview_player
Показать описание
Important data structure is Graph . First video in graph theory.
Рекомендации по теме
Комментарии
Автор

Your videos and explanations are excellent! You've been a huge part of my success in my data structures class right now. Thank you!

sonnyhaa
Автор

Underrated gem of Indian Edu industry.

raj-nqke
Автор

I am from misrata uni ;Libya! I am so glad that u r my teacher! So please can u cover the graph ! Code and concepts! U don't know how much I am glad with ur vids

nouraaliabuhlega
Автор

Finally!! I am so glad you started Graphs sir! Please cover problems in depth like you do.

thisrav
Автор

Thank you sir...you are best teacher for data structures on youtube

Adityasharma-oezp
Автор

Sir Plz make a separate playlist of graph
Please please

nvision.studywithfun
Автор

You are amazing my friend ! thank you so much

Adam-gpij
Автор

Eagerly waiting for the upcoming graph video.. u are helping to to all who thinks about data in computer science.

ishaansharma
Автор

As soon as he says hello friends I click like button directly first (= Thank you so much friend <3

AA-emlw
Автор

Your explanation is great... You are really gifted in teaching and explaning things and making probs look simple!! You Rock

arun
Автор

TY FOR TUTORIAL. COMING FROM VIETNAM SAYING HELLO TY AGAIN. IT HELP ME WITH MY CLASSES. VERY NICE. I UNDERSTAND WELL. YOU TEACH WELL. MORE VIDEO. TY

richardvu
Автор

Hi there, Very nice video, but have just one suggestion which is you have many playlists on different courses but why don't you create playlists for graph theory, so its easier for us to navigate and follow the courses in order so people don't get confused. Overall awesome video. Thank you!

aakashpatel
Автор

thank u sir ...this video very helpful for me

hritikachaudhary
Автор

Thank you sir☺️
For the explanation ✨

priyakerketta
Автор

Great explanations thank you very much. I you could make a video about detecting cycles in a graph, topological sort and finding strongly connected components, that would be great.

sarmanarbek
Автор

Sir iam bsc maths student plese upload vedio for graph thory detail as in our 6th semester by mangalore univrsity

rlfrlgy
Автор

Sir, Your lectures on datastructure is awesome we get clarity about each data structure. Could you also prepare in depth on these topics Graphs and Tress AVL, Red Black, Dynamic Programming, Tries, Back tracking, Heaps, stacks, queues.

srikiarya
Автор

#include<bits/stdc++.h>
#include<vector>

using namespace std;


void addedge(vector<int> graph[], int u, int v){


graph[u].push_back(v);
graph[v].push_back(u);



}
void printthegraph(vector<int> graph[], int n){

for(int i=0;i<n;i++){


for(auto



cout<<*itr;
}



}


}






int main()
{
int n;
cout<<"please entert the total number of element in the graph";
cin>>n;
cout<<endl;
vector<int> graph[5];


addedge(graph, 1,2);
addedge(graph, 0,5);
addedge(graph, 0, 4);
printthegraph(graph, 5);



}

kaushiktechnicalsupport
Автор

Sir, please make videos on programs based on String manipulation

anishamatthias
Автор

Hello please upload a video for graph density and difference graph density. Thank you

rohitariq