This is a quick tutorial for implementing graph data structure with adjacency list representation. Once I was looking on the web to have a simple introductory tutorial on graphs, but unfortunately couldn’t find one simple enough. So I decided to write this. In the adjacency list representation, è All the vertices are stored in an array of structure containing ‘data’ and ‘link’ fields. è The linked chains represent the edges of a vertex with its neighbors. In the figure, there are 6 vertices, represented by the array of length 6, and the chains represent the edges. Below is another example: Let us first define the structure of a vertex in a graph. struct vertex { int vertexKey; struct edge *edgePtr; }vertex; The vertexKey is the data field of the vertex, and edgePtr is the edge pointer, declared next. The graph can be declared as: struct vertex graph[10]; int vertexCount=0; Here...
Palak Johal, claimed the title of 10th season of famous MTV reality show Roadies, Battle For Glory. Palak, who proved himself the strongest contestant, defeated 15 contestants and took home a cheque of Rs 4,50,000 and a Hero bike. The other Hero Roadies X Contestants of the finale were Raman Deep, Mohit and Anirudh. Palak- Winner of Roadies X The final episode of Roadies X began with all the eliminated Roadies entering the location where they clashed with the final four. These four were the finalites: The two boys got eliminated in the rope task. So the ultimate battle was between Ramandeep and Palak. Too bad, isn't it.. most of us wanted Mohit or Anirudh to claim the title. So, the final battle concluded to between Ramandeep and Palak! And finally, Palak Claimed the title of Roadies X, battle for glory !!! Like always Raghu Ram, his twin brother Rajiv Laxman and Rannvijay were the judges. How did you like the 10th s...
This is a directory of deep learning resources that I have been following, and putting here for personal reference. If you have a recommendation, feel free to leave a comment. Convolutional networks https://adeshpande3.github.io/A-Beginner's-Guide-To-Understanding-Convolutional-Neural-Networks/ - Part 1 https://adeshpande3.github.io/adeshpande3.github.io/A-Beginner's-Guide-To-Understanding-Convolutional-Neural-Networks-Part-2/ - Part 2 Neural network book [TODO] http://neuralnetworksanddeeplearning.com/index.html MXNet NDArray tutorial - http://mxnet.io/tutorials/python/ndarray.html Handwritten digits recognition - http://mxnet.io/tutorials/python/mnist.html[TODO] Full list of tutorials here: http://mxnet.io/tutorials/index.html LSTM Understanding LSTM Networks - http://colah.github.io/posts/2015-08-Understanding-LSTMs/ Neural network visualization Video - https://www.youtube.com/watch?v=AgkfIQ4IGaM == Definitions == Lower and higher laye...
Comments
Post a Comment