ThinkX Academy
ThinkX Academy
  • 331
  • 1 548 437
[6.1] Graph Data Structure in Java
🔗Full Course(Free):
Website: www.thinkxacademy.com/Data%20Structures%20in%20Java/
🔗Download Android App(Notes+Videos): play.google.com/store/apps/details?id=com.thinkx.thinkx
🌐Join our community:
Facebook: thinkxacademy Twitter: thinkxacademy Instagram: thinkxacademy
Переглядів: 355

Відео

[5.2] Queues in Java using Linked List
Переглядів 992Рік тому
Queue Implementation using Linked List in Java. 🔗Full Course: www.thinkxacademy.com/Data Structures in Java 🔗Download Android App(Notes Videos): play.google.com/store/apps/details?id=com.thinkx.thinkx 🌐Join our community: Facebook: thinkxacademy Twitter: thinkxacademy Instagram: thinkxacademy
[5.1] Queues Implementation in Java using Array
Переглядів 2 тис.Рік тому
Queues implementation using arrays in Java is covered in this lecture. Using arrays we can create fixed size arrays. 🔗Full Course(Free): www.thinkxacademy.com/Data Structures in Java/ 🔗Download Android App(Notes Videos): play.google.com/store/apps/details?id=com.thinkx.thinkx 🌐Join our community: Facebook: thinkxacademy Twitter: thinkxacademy Instagram: th...
[4.1] Stacks in Java
Переглядів 2982 роки тому
In this tutorial we will implement stacks using arrays and linked list in java. 🔗Full Course(Free): Website: www.thinkxacademy.com/Data Structures in Java/ 🔗Download Android App(Notes Videos): play.google.com/store/apps/details?id=com.thinkx.thinkx 🌐Join our community: Facebook: thinkxacademy Twitter: thinkxacademy Instagram: thinkxacademy #stacks #dsa #java
Deepest Leaves Sum (Easy DFS) | LeetCode 1302 | Cracking the Coding Interview
Переглядів 2662 роки тому
We will use inorder traversal to solve this problem. 🔗Full Course(Free): Website: www.thinkxacademy.com/Binary Trees/ 🔗Download Android App(Notes Videos): play.google.com/store/apps/details?id=com.thinkx.thinkx 🌐Join our community: Facebook: thinkxacademy Twitter: thinkxacademy Instagram: thinkxacademy #sdecheatsheet #binarytree #dfs
[3.3] Deletion in Linked List in Java
Переглядів 1,3 тис.2 роки тому
Delete a node in Linked List in java code. 🔗Full Course(Free): Website: [3.3] Deletion in Linked List 🔗Download Android App(Notes Videos): play.google.com/store/apps/details?id=com.thinkx.thinkx 🌐Join our community: Facebook: thinkxacademy Twitter: thinkxacademy Instagram: thinkxacademy
Swap Nodes in Pairs - Facebook Interview Question - LeetCode 24
Переглядів 1302 роки тому
🔗Full Course(Free): Website: www.thinkxacademy.com/Linked List/ 🔗Download Android App(Notes Videos): play.google.com/store/apps/details?id=com.thinkx.thinkx 🌐Join our community: Facebook: thinkxacademy Twitter: thinkxacademy Instagram: thinkxacademy
Builder Design Pattern in Object Oriented Design
Переглядів 5772 роки тому
🔗Full Course(Free): Website: www.thinkxacademy.com/Object Oriented Design/ In this video you will learn Builder Design Pattern which is used to build complex objects and separate the construction from representation. We will example of a car to represent this pattern. Key Concepts: 1) Builder Object 2) Immutability Timestamps: 00:00 What is Builder Design? 03:10 UML Example 14:07 Java Program 🔗...
[3.2] Insert Node at specific position in Linked List
Переглядів 4,1 тис.2 роки тому
🔗Full Course(Free): Website: www.thinkxacademy.com/Data Structures in Java/ Inserting new node at a specific position in singly linked list or between two nodes. 🔗Download Android App(Notes Videos): play.google.com/store/apps/details?id=com.thinkx.thinkx 🌐Join our community: Facebook: thinkxacademy Twitter: thinkxacademy Instagram: thinkxacademy #java #dsa
Abstract Factory Design Pattern | Object Oriented Design
Переглядів 3482 роки тому
🔗Full Course(Free): Website: www.thinkxacademy.com/Object Oriented Design/ In this video you will learn about Abstract Factory Pattern which is an extension of Factory Pattern where we convert factory class into abstractions. 🔗Download Android App(Notes Videos): play.google.com/store/apps/details?id=com.thinkx.thinkx 🌐Join our community: Facebook: thinkxacademy Twitter: twitter.com...
[8.1] Bellman Ford Shortest Path: Detect Negative Cycles
Переглядів 1,1 тис.2 роки тому
🔗Full Course(Free): Website: www.thinkxacademy.com/Data Structures in Python/ Negative Cycles are those cycles whose sum of weights of edges is negative. If a graph contains negative cycles then it will not be possible to get the shortest path/distance. 🔗Download Android App(Notes Videos): play.google.com/store/apps/details?id=com.thinkx.thinkx 🌐Join our community: Facebook: thinkx...
Reverse Linked List(Iterative) | Leetcode 206 | Whiteboard Approach | Cracking the Coding Interview
Переглядів 2832 роки тому
🔗Full Course(Free): Website: www.thinkxacademy.com/Linked List/ Reverse Linked List using Iterative Approach. Learn how to solve coding problems in technical coding interviews. 🔗Download Android App(Notes Videos): play.google.com/store/apps/details?id=com.thinkx.thinkx 🌐Join our community: Facebook: thinkxacademy Twitter: thinkxacademy Instagram: thinkxaca...
Factory Design Pattern | Object Oriented Design
Переглядів 6872 роки тому
In this video you will learn Factory Pattern of 23 Gang of Four Design Patterns. It is a Creational Pattern. 🔗Full Course(Free): Website: www.thinkxacademy.com/Object Oriented Design/ 🔗Download Android App(Notes Videos): play.google.com/store/apps/details?id=com.thinkx.thinkx 🌐Join our community: Facebook: thinkxacademy Twitter: thinkxacademy Instagram: th...
UML Class Diagrams Full Course (Unified Modeling Language) | Object Oriented Design Coding Interview
Переглядів 2,2 тис.2 роки тому
🔗Full Course(Free): Website: www.thinkxacademy.com/Object Oriented Design/ In this video you will learn how to create UML Diagrams for classes in object oriented design. UML is a modelling language that helps us visualize classes in a OOPs environment. We will use these diagrams in Design Patterns also. Timestamps: 00:00 What is UML? 01:28 UML Class Structure 08:33 Class Relationships 22:33 Car...
Dependency Inversion Principle in Object Oriented Design | SOLID Principle
Переглядів 1,2 тис.2 роки тому
The Dependency Inversion Principle (DIP) states that high level modules should not depend on low level modules; both should depend on abstractions. Abstractions should not depend on details. Details should depend upon abstractions. Key Concepts you will learn: 1) Dependency Injection 2) Loose Coupling 3) Abstraction 🔗Full Course: www.thinkxacademy.com/Object Oriented Design/ 🔗Download Android A...
Interface Segregation Principle in Object Oriented Design | SOLID Principles
Переглядів 8312 роки тому
Interface Segregation Principle in Object Oriented Design | SOLID Principles
Liskov Substitution Principle in Object Oriented Design | SOLID Principles
Переглядів 1,2 тис.2 роки тому
Liskov Substitution Principle in Object Oriented Design | SOLID Principles
Open Closed Principle in Object Oriented Design | SOLID Principles
Переглядів 1,3 тис.2 роки тому
Open Closed Principle in Object Oriented Design | SOLID Principles
Single Responsibility Principle in Object Oriented Design
Переглядів 1,6 тис.2 роки тому
Single Responsibility Principle in Object Oriented Design
Object Oriented Design LLD Roadmap 🔥 | New Course
Переглядів 6 тис.2 роки тому
Object Oriented Design LLD Roadmap 🔥 | New Course
[3.1] Insert Node at Head in Linked List (Java)
Переглядів 1,4 тис.2 роки тому
[3.1] Insert Node at Head in Linked List (Java)
[3.0] Linked List in Java
Переглядів 2922 роки тому
[3.0] Linked List in Java
[2.2] Rotate Array in Java
Переглядів 6892 роки тому
[2.2] Rotate Array in Java
[2.1] Reverse Array in Java
Переглядів 3662 роки тому
[2.1] Reverse Array in Java
[2.0] Arrays in Java
Переглядів 1392 роки тому
[2.0] Arrays in Java
[1.0] Data Structures in Java (Introduction)
Переглядів 4982 роки тому
[1.0] Data Structures in Java (Introduction)
[8.0] Bellman Ford Shortest Path Algorithm in Python
Переглядів 4,4 тис.2 роки тому
[8.0] Bellman Ford Shortest Path Algorithm in Python
ASMR Programming - LeetCode Competitive Programming - No Talking
Переглядів 1,1 тис.2 роки тому
ASMR Programming - LeetCode Competitive Programming - No Talking
[1.6] Merge Sort Algorithm in Python
Переглядів 9512 роки тому
[1.6] Merge Sort Algorithm in Python
[1.5] Heap Sort in Python
Переглядів 6 тис.2 роки тому
[1.5] Heap Sort in Python

КОМЕНТАРІ

  • @E_Wideman_Communications
    @E_Wideman_Communications 16 годин тому

    I say approach 2, simply because it’s not organized and you could do more by unsing the interface class extending it from the shape class

  • @ibnefayaz5107
    @ibnefayaz5107 20 днів тому

    Thanks ❣❣

  • @dishandshah660
    @dishandshah660 23 дні тому

    Thank you!

  • @kshitijramteke2566
    @kshitijramteke2566 25 днів тому

    Not able to understand simply not an simple concept

  • @santoshdevkota1959
    @santoshdevkota1959 28 днів тому

    nice

  • @8bug749
    @8bug749 29 днів тому

    too complicated, bad narration! dislike

  • @Muntasir007
    @Muntasir007 Місяць тому

    Is this algo correct? Remove all self-loops Remove all parallel edges between two vertex except the one with least weight Create a table where row and column will be exactly equal to the number of vertex. Put the value of edges on the table. All diagonal elements will be 0. If no edge is exited between any two vertex, put ∞ . Select a column as a starting node, and delete its row and indicate the node as finished. Find the minimum weight from the column of the deleted nodes’ column. Delete the row of the new node and indicate as the node as finished. Repeat the process from 6-7 until finished.

  • @user-mx7sv3mo4i
    @user-mx7sv3mo4i Місяць тому

    Amazing explenation!!!!

  • @beastmadara
    @beastmadara Місяць тому

    Great Explaination Dear...!!

  • @lalitkhare6209
    @lalitkhare6209 Місяць тому

    nice explanation dear brother😇

  • @hafizsakib2734
    @hafizsakib2734 Місяць тому

    Very neat and Clean Explanation,Thanks

  • @pavanhosatti4417
    @pavanhosatti4417 Місяць тому

    Top class explanation. Thank You.

  • @Code-sd3vl
    @Code-sd3vl Місяць тому

    Indians speaking emglish sounds very ridiculous, next time use subtitles, or remove anything below your tonge, the world will thank you.

  • @Code-sd3vl
    @Code-sd3vl Місяць тому

    Indians speaking english sounds very ridiculous, next time use subtitles, the world will thank you

  • @BitesofAabi
    @BitesofAabi Місяць тому

    brother i dont found short video on this topic you are good i easily understand basic concept now i`m able to attempt paper if a get this question in my finals

  • @devarshisingh9349
    @devarshisingh9349 Місяць тому

    could have used stack. but good explanation any way.

  • @harsiddhitamboli
    @harsiddhitamboli 2 місяці тому

    Quick question - IF we are subtracting the learning rate X cost function from the theta does that mean in every step we are decreasing the value of theta

  • @sandy-qo2qj
    @sandy-qo2qj 2 місяці тому

    Jyada English mat jhad😅

  • @pranavarya2164
    @pranavarya2164 2 місяці тому

    why did u not use threshold

  • @naimaraian8088
    @naimaraian8088 2 місяці тому

    Thanks a lot

  • @bubiubcyufg-zc4ui
    @bubiubcyufg-zc4ui 2 місяці тому

    it was super useful for me thank you my friend!

  • @Naveen.1431
    @Naveen.1431 2 місяці тому

    Good 🎉 Explanation

  • @midhunamadhu1605
    @midhunamadhu1605 2 місяці тому

    all the four 64 KB locations add upto 256 KB right? Then where is the rema ining 768KB go? The total memory is 1 MB

  • @samarthagarwal6929
    @samarthagarwal6929 2 місяці тому

    you forgot to multiply xi in the formula for calculating new weight.

  • @sumaira_anjum.11
    @sumaira_anjum.11 2 місяці тому

    Best explanation so far.. After so many other vids I only understood your explanation.. Thank you so much..

  • @puppy142gmail
    @puppy142gmail 2 місяці тому

    how to do classfication for any csv data

  • @diwen1677
    @diwen1677 2 місяці тому

    ur a legend for this

  • @harshinibhat8524
    @harshinibhat8524 2 місяці тому

    Sir u look like triggered insaan ( nishchay). But nice teaching sir 😀

  • @user-fq5eq7cd4p
    @user-fq5eq7cd4p 3 місяці тому

    what extension do you use to which prints the error like not defined etc?

  • @kumaru5796
    @kumaru5796 3 місяці тому

    Its really good video. crispy and clear. i have one doubt. for initialization of graph every node is a infinite but travel from A ->B =2 and A -> C =4 . how you have defined this initially. ?

  • @theludicrousstuart6858
    @theludicrousstuart6858 3 місяці тому

    I think you should use a dark color arrow, because the board is white.

  • @sahezadibegum5333
    @sahezadibegum5333 3 місяці тому

    Post this video pdf as well to easy to save file for revision

  • @prathamsharma4802
    @prathamsharma4802 3 місяці тому

    Please also solve numericals this is waste of time

  • @ernesto_quintana
    @ernesto_quintana 3 місяці тому

    Thank you !!!

  • @afrozakhanam-kj7uk
    @afrozakhanam-kj7uk 3 місяці тому

    Please continue the playlist.

  • @SaraMehari
    @SaraMehari 3 місяці тому

    thank you it gives me the main core pointes of this course

  • @shobhamahadev118
    @shobhamahadev118 3 місяці тому

    explained very well 👍

  • @smith2186
    @smith2186 3 місяці тому

    This man the legend 🔥

  • @vinitdoijad7336
    @vinitdoijad7336 3 місяці тому

    Good

  • @kevinanderson7737
    @kevinanderson7737 4 місяці тому

    This method does not account for if the head holds the element, and leaves no room for error checking.

  • @aroraaaditya
    @aroraaaditya 4 місяці тому

    THIS VIDEO HAS MORE CONTENT THAN MY SEMESTER

  • @arcomarco7131
    @arcomarco7131 4 місяці тому

    Jesus, it was so badly executed. I needed only to refresh something and I got headache.

  • @cecilietrinh6362
    @cecilietrinh6362 4 місяці тому

    Great tutorials! Please make linked list doubly, circular singly and circular doubly as well.😇

  • @Rohit_foodvlogs
    @Rohit_foodvlogs 4 місяці тому

    Bro which book should I prefer?? For this course??

  • @aayushpaturkar7705
    @aayushpaturkar7705 4 місяці тому

    17:45 in this you have changed the value of alpha 3 to 1 but as we have the value max which is 3 ,so why change to 1?, this i thought confusing?

  • @praveennv611
    @praveennv611 4 місяці тому

    You could have explained it better, some sort of confusion

  • @shubhamkalra9049
    @shubhamkalra9049 4 місяці тому

    Can you explain what is x(j) when we are trying to find out gradient descent?

  • @matthayden1979
    @matthayden1979 4 місяці тому

    In Async who a worker thread will know that it need to wait for a task to complete and it should take up another task?

  • @siddharthmihir9850
    @siddharthmihir9850 4 місяці тому

    You have done an amazing work. Thanks!

  • @pietlemao8491
    @pietlemao8491 5 місяців тому

    Great explanation sir