Anindita Das Bhattacharjee
Anindita Das Bhattacharjee
  • Видео 161
  • Просмотров 823 811
AVL Tree Deletion
An AVL tree, named after its inventors Adelson-Velsky and Landis, is a special type of Binary Search Tree (BST) that keeps itself balanced. This means that the height difference between the left and right subtrees of any node is no more than one. You can insert, delete, and search for items in an AVL tree just like in a BST. To stay balanced, an AVL tree can rotate its subtrees in four ways: left rotation (when a new node makes the right side too tall), right rotation (when a new node makes the left side too tall), left-right rotation (a left rotation followed by a right rotation), and right-left rotation (a right rotation followed by a left rotation). AVL trees are useful for indexing la...
Просмотров: 22 056

Видео

Normalization in DBMS Part 3 | BCNF
Просмотров 14 тыс.5 месяцев назад
In this video, I have covered Database Normalization BCNF, including the difference between 3NF and BCNF Normal form. Learn how to reduce data redundancy and improve data integrity through practical examples of normalization. Whether you're studying for your DBMS exams or preparing for an interview, this tutorial on normalization will definitely help you. #Step by step database normalization #D...
Database Normalization Explained: 1NF, 2NF, 3NF, BCNF Simplified | DBMS Tutorial
Просмотров 26 тыс.6 месяцев назад
In this video, I have covered Database Normalization 1NF, 2NF, 3NF, and BCNF, including the difference between 3NF and BCNF Normal form. Learn how to reduce data redundancy and improve data integrity through practical examples of normalization. Whether you're studying for your DBMS exams or preparing for an interview, this tutorial on normalization will definitely help you. #Step by step databa...
Garbage Collection in Java
Просмотров 4296 месяцев назад
Integer: Integer is a class in Java that wraps a primitive int value into an object. This allows you to treat int values as objects and provides utility methods for working with them. new Integer(4): This part of the statement creates a new instance of the Integer class with the value 4. - An object is said to be unreachable if it doesn’t contain any reference to it. - An object is said to be e...
Wrapper class in Java
Просмотров 1,6 тыс.6 месяцев назад
Wrapper class in Java
File Handling Using Thread in Java
Просмотров 3636 месяцев назад
import java.io.FileWriter; import java.io.IOException; These lines import necessary classes from the java.io package. FileWriter is used to write characters to a file, and IOException is an exception that might be thrown during input-output operations. class NumberWriter extends Thread { Defines a new class named NumberWriter which extends the Thread class. This suggests that instances of Numbe...
Introduction to Android Programming
Просмотров 6696 месяцев назад
The lifecycle methods of an Android activity represent different stages of its existence, from creation to destruction. onCreate(): Called when the activity is first created. This is where initialization occurs. onStart(): Called when the activity becomes visible to the user. onResume(): Called when the activity starts interacting with the user. This is typically where animations and audio play...
Multithreading in Java
Просмотров 5998 месяцев назад
Live class interaction with 2nd year CSE and CSE (AI) students on concepts of Multi-Threading in Java Note: The tutorial language in English, however, there are a few vernacular explanations as well Thread Creation in Java : Runnable Interface - ruclips.net/video/VkX1X9Jh3IE/видео.html Multithreading : Thread Synchronization in Java - ruclips.net/video/PZN6lDsn52o/видео.html Threads Scheduling ...
Postorder To Preorder with Shortest Trick
Просмотров 29 тыс.10 месяцев назад
Tree Traversal Overview: Tree traversal is a fundamental operation in computer science, especially in the context of binary trees. There are three primary methods for traversing a binary tree: Preorder, Inorder, and Postorder. 1. Preorder Traversal: - Visit the root node. - Traverse the left subtree in preorder. - Traverse the right subtree in preorder. 2. Inorder Traversal: - Traverse the left...
Preorder To Postorder with Shortest Trick
Просмотров 7 тыс.10 месяцев назад
Tree Traversal Overview: Tree traversal is a fundamental operation in computer science, especially in the context of binary trees. There are three primary methods for traversing a binary tree: Preorder, Inorder, and Postorder. 1. Preorder Traversal: - Visit the root node. - Traverse the left subtree in preorder. - Traverse the right subtree in preorder. 2. Inorder Traversal: - Traverse the left...
Infix To Prefix Conversion
Просмотров 3,2 тыс.11 месяцев назад
In real-life applications, the conversion from Infix to Prefix notation holds practical significance across diverse fields. Prefix notation, where operators precede their operands, is preferred for its simplicity and parsing advantages in representing mathematical expressions. In compiler design, the conversion facilitates optimization strategies and intermediate code generation, adding flexibi...
Tree Traversal in Data Structure
Просмотров 33411 месяцев назад
Shortcut Trick for Tree Traversal
Recurrent Neural Network & LSTM for Beginners Part 2
Просмотров 5 тыс.Год назад
In this video we will learn - Vanishing & Exploding gradient problem. - Utility & need of 3 different gates used inside LSTM memory cell with real-life example. - Difference between RNN & LSTM. - Working principle of RNN & LSTM. - Activation function used in RNN & LSTM. - Concept of model convergence.
Recurrent Neural Network & LSTM for Beginners Part 1
Просмотров 6 тыс.Год назад
In this video, I have explained - - Introduction to RNN - Basic application of RNN & LSTM - Language Modelling & Generating Text example using RNN - Difference between Recurrence & Back propagation - Concept of temporal sequencing
Convolutional Neural Network for Beginners Part 2
Просмотров 6 тыс.Год назад
In a Convolutional Neural Network (CNN), a kernel (also known as a filter or feature detector) is a small matrix used to convolve over the input image in order to extract relevant features. The importance of the kernel lies in its ability to identify specific patterns or features within an image. By sliding the kernel over the image, it applies a mathematical operation to each section of the im...
Convolutional Neural Network for Beginners Part 1
Просмотров 9 тыс.Год назад
Convolutional Neural Network for Beginners Part 1
Python for Beginners | Files
Просмотров 534Год назад
Python for Beginners | Files
Candidate Key | Super Key in DBMS
Просмотров 3,6 тыс.2 года назад
Candidate Key | Super Key in DBMS
Data Analysis and Visualization with Python - Outlier, IQR, Box Plot
Просмотров 11 тыс.2 года назад
Data Analysis and Visualization with Python - Outlier, IQR, Box Plot
Introduction to Artificial Neural Networks & Bias
Просмотров 22 тыс.2 года назад
Introduction to Artificial Neural Networks & Bias
Activation Functions in a Neural Network explained with Python Part 2
Просмотров 2,9 тыс.2 года назад
Activation Functions in a Neural Network explained with Python Part 2
Statistical Analysis: Hypothesis Testing with Python Implementation
Просмотров 8 тыс.2 года назад
Statistical Analysis: Hypothesis Testing with Python Implementation
Hebbian Learning Algorithm with Solved Example
Просмотров 11 тыс.2 года назад
Hebbian Learning Algorithm with Solved Example
Activation Functions in a Neural Network explained with Python Part 1
Просмотров 9 тыс.2 года назад
Activation Functions in a Neural Network explained with Python Part 1
DBMS - SQL Query Part 1
Просмотров 8802 года назад
DBMS - SQL Query Part 1
Pattern Recognition
Просмотров 24 тыс.2 года назад
Pattern Recognition
A* Search is Admissible | Proof
Просмотров 4,2 тыс.2 года назад
A* Search is Admissible | Proof
Heuristic Search | Properties | Hill Climbing
Просмотров 8542 года назад
Heuristic Search | Properties | Hill Climbing
Polymorphism in Java | Method & Constructor Overloading | Overriding | Java Tutorial for Beginners
Просмотров 5 тыс.2 года назад
Polymorphism in Java | Method & Constructor Overloading | Overriding | Java Tutorial for Beginners
Encapsulation in Java | Java Tutorial for Beginners
Просмотров 4,4 тыс.2 года назад
Encapsulation in Java | Java Tutorial for Beginners

Комментарии

  • @nilanjanghosh9285
    @nilanjanghosh9285 4 дня назад

    excellent explanation mam... very much liked that real world human eye analogy

  • @Shanwaz-ys3ky
    @Shanwaz-ys3ky 21 день назад

    Your teaching style is fantastic

  • @rahulvarma1323
    @rahulvarma1323 Месяц назад

    Amazing video on SVR! Loved the clear explanations on kernels and outlier detection 👍

  • @pramodchoudhary7073
    @pramodchoudhary7073 Месяц назад

    This video made SVR concepts so clear, especially the part on epsilon-insensitive tube

  • @mukeshnaga1117
    @mukeshnaga1117 Месяц назад

    great breakdown of bias, variance, and overfitting this made video flow made it so easy to follow

  • @shyamswami9576
    @shyamswami9576 Месяц назад

    how is your video quality so good

  • @harsitparik9670
    @harsitparik9670 Месяц назад

    On repeat

  • @arunsharma7841
    @arunsharma7841 Месяц назад

    Osm editing

  • @rajsolanki6865
    @rajsolanki6865 Месяц назад

    Really Nice video

  • @NarendraSingh-ls9jr
    @NarendraSingh-ls9jr Месяц назад

    🔥🔥🔥🔥🔥🔥

  • @sajidchohan4078
    @sajidchohan4078 Месяц назад

    Really good video

  • @Swapnil-m6s
    @Swapnil-m6s Месяц назад

    Thank you 🙏 so nicely explain

    • @aninditadas5940
      @aninditadas5940 Месяц назад

      My pleasure, please share with others and Happy Learning

  • @rinsharinz2148
    @rinsharinz2148 Месяц назад

    Clearly explained the concept. ❤

    • @aninditadas5940
      @aninditadas5940 Месяц назад

      Glad it was helpful. Please share with others

  • @anshasati1920
    @anshasati1920 Месяц назад

    Arguably a best video on ANN Perceptron algo

  • @maaleekatta4532
    @maaleekatta4532 2 месяца назад

    i have a doubt about unrepeatable read. does unrepeatable read voilates isolation in your example or not. i have confusion

  • @CheriPitts-r8w
    @CheriPitts-r8w 2 месяца назад

    I can't wait for your next videos.

  • @JoeKing-n3t
    @JoeKing-n3t 2 месяца назад

    Ya he visto este video varias veces.

  • @BillDing-h9k
    @BillDing-h9k 2 месяца назад

    Du hast eine fesselnde Art, Informationen zu präsentieren.

  • @DennyJuanHeredatt-p8m
    @DennyJuanHeredatt-p8m 2 месяца назад

    Questo video è fantastico!

    • @aninditadas5940
      @aninditadas5940 2 месяца назад

      Thank you, please share with others and Happy Learning

  • @chrystalglass2664
    @chrystalglass2664 2 месяца назад

    Você tem uma maneira cativante de apresentar informações.

    • @aninditadas5940
      @aninditadas5940 2 месяца назад

      Thank you, please do share with others

  • @ะคนเดิม
    @ะคนเดิม 2 месяца назад

    You did an amazing job.

    • @aninditadas5940
      @aninditadas5940 2 месяца назад

      Glad it was helpful, please share with others

  • @InlAI-nd8zi
    @InlAI-nd8zi 2 месяца назад

    Este vídeo é incrível!

    • @aninditadas5940
      @aninditadas5940 2 месяца назад

      Glad the video was helpful, please share and Happy Learning

  • @WarrenT-b9l
    @WarrenT-b9l 2 месяца назад

    You did an amazing job.

    • @aninditadas5940
      @aninditadas5940 2 месяца назад

      Glad it was helpful, please share with others

  • @PranabLovesEveryone
    @PranabLovesEveryone 2 месяца назад

    🧑‍🏫Please, provide notes??

  • @yTYRu-p7k
    @yTYRu-p7k 2 месяца назад

    You have a bright future in this field.

  • @LilyLivard-d6m
    @LilyLivard-d6m 2 месяца назад

    I'm so impressed with your creativity.

    • @aninditadas5940
      @aninditadas5940 2 месяца назад

      Glad you like it, Happy Learning and please share with others

  • @user-je7ve5vr7i
    @user-je7ve5vr7i 2 месяца назад

    This video deserves more recognition.

  • @Valdu0
    @Valdu0 2 месяца назад

    Jesus is the only way to the father

  • @c_137_adrishbhattacharya9
    @c_137_adrishbhattacharya9 2 месяца назад

    Thank you ma'am. Great video. Understood the concept well.

  • @ravigh447
    @ravigh447 2 месяца назад

    Very helpful for C beginners! Thank you.

  • @ไหมฟ้าโพทิลาด
    @ไหมฟ้าโพทิลาด 2 месяца назад

    This video deserves more recognition.

  • @IonVallejo
    @IonVallejo 2 месяца назад

    This video brings so much positive value.

  • @ZelmaGerardo
    @ZelmaGerardo 2 месяца назад

    Thank you for creating such a wonderful video.

    • @aninditadas5940
      @aninditadas5940 2 месяца назад

      My pleasure, Happy Learning and please share

  • @SondraLuger
    @SondraLuger 2 месяца назад

    I learned so much from this video.

    • @aninditadas5940
      @aninditadas5940 2 месяца назад

      Glad to hear, please share with others

  • @CarlettaKuhnert
    @CarlettaKuhnert 2 месяца назад

    I feel connected to you through this video.

  • @NeptunoKarimi
    @NeptunoKarimi 2 месяца назад

    You did an amazing job.

    • @aninditadas5940
      @aninditadas5940 2 месяца назад

      Thank you, Happy Learning and share with others

  • @AutumnAakre
    @AutumnAakre 2 месяца назад

    You did an amazing job.

    • @aninditadas5940
      @aninditadas5940 2 месяца назад

      Glad to hear, please share with others

  • @LeonieWinterholler
    @LeonieWinterholler 2 месяца назад

    I've subscribed to your channel.

  • @PST-sv6wu
    @PST-sv6wu 2 месяца назад

    This video is top-notch quality.

  • @PorshaDunovant
    @PorshaDunovant 2 месяца назад

    Thank you for sharing this valuable information.

    • @aninditadas5940
      @aninditadas5940 2 месяца назад

      You're welcome, share with others, Happy Learning

  • @BartSisneros
    @BartSisneros 2 месяца назад

    This video really touched my heart.

  • @MarlenaMalboeuf
    @MarlenaMalboeuf 2 месяца назад

    You did an amazing job.

    • @aninditadas5940
      @aninditadas5940 2 месяца назад

      Glad to hear, please share with others and Happy Learning

  • @100krai-qm6oz
    @100krai-qm6oz 2 месяца назад

    The content is truly outstanding.

  • @NeilDown-v2j
    @NeilDown-v2j 2 месяца назад

    This video brings so much positive value.

    • @aninditadas5940
      @aninditadas5940 2 месяца назад

      Glad to hear thank you and Happy Learning

  • @GailVilardi
    @GailVilardi 2 месяца назад

    I've watched this video multiple times already.

  • @MaicaRueter
    @MaicaRueter 2 месяца назад

    You're a true inspiration.

  • @AnnaConda-p4u
    @AnnaConda-p4u 2 месяца назад

    This video made me think deeply.

  • @SkyeRezendes
    @SkyeRezendes 2 месяца назад

    You have a bright future in this field.

  • @AndreasLaskaris
    @AndreasLaskaris 2 месяца назад

    You have a bright future in this field.

  • @HutchMoran
    @HutchMoran 2 месяца назад

    I can't wait for your next videos.