Anindita Das Bhattacharjee
Anindita Das Bhattacharjee
  • Видео 161
  • Просмотров 880 416
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...
Просмотров: 23 307

Видео

Normalization in DBMS Part 3 | BCNF
Просмотров 14 тыс.7 месяцев назад
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
Просмотров 29 тыс.8 месяцев назад
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
Просмотров 4678 месяцев назад
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 тыс.8 месяцев назад
Wrapper class in Java
File Handling Using Thread in Java
Просмотров 4078 месяцев назад
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
Просмотров 7248 месяцев назад
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
Просмотров 6459 месяцев назад
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 тыс.Год назад
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
Просмотров 9 тыс.Год назад
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
Просмотров 4,3 тыс.Год назад
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
Просмотров 336Год назад
Shortcut Trick for Tree Traversal
Recurrent Neural Network & LSTM for Beginners Part 2
Просмотров 6 тыс.Год назад
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
Просмотров 7 тыс.Год назад
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
Просмотров 8 тыс.Год назад
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
Просмотров 10 тыс.Год назад
Convolutional Neural Network for Beginners Part 1
Python for Beginners | Files
Просмотров 5532 года назад
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
Просмотров 22 тыс.2 года назад
Data Analysis and Visualization with Python - Outlier, IQR, Box Plot
Introduction to Artificial Neural Networks & Bias
Просмотров 23 тыс.2 года назад
Introduction to Artificial Neural Networks & Bias
Activation Functions in a Neural Network explained with Python Part 2
Просмотров 3,9 тыс.2 года назад
Activation Functions in a Neural Network explained with Python Part 2
Statistical Analysis: Hypothesis Testing with Python Implementation
Просмотров 10 тыс.2 года назад
Statistical Analysis: Hypothesis Testing with Python Implementation
Hebbian Learning Algorithm with Solved Example
Просмотров 13 тыс.2 года назад
Hebbian Learning Algorithm with Solved Example
Activation Functions in a Neural Network explained with Python Part 1
Просмотров 11 тыс.2 года назад
Activation Functions in a Neural Network explained with Python Part 1
DBMS - SQL Query Part 1
Просмотров 8842 года назад
DBMS - SQL Query Part 1
Pattern Recognition
Просмотров 25 тыс.2 года назад
Pattern Recognition
A* Search is Admissible | Proof
Просмотров 4,8 тыс.2 года назад
A* Search is Admissible | Proof
Heuristic Search | Properties | Hill Climbing
Просмотров 8753 года назад
Heuristic Search | Properties | Hill Climbing
Polymorphism in Java | Method & Constructor Overloading | Overriding | Java Tutorial for Beginners
Просмотров 5 тыс.3 года назад
Polymorphism in Java | Method & Constructor Overloading | Overriding | Java Tutorial for Beginners
Encapsulation in Java | Java Tutorial for Beginners
Просмотров 4,4 тыс.3 года назад
Encapsulation in Java | Java Tutorial for Beginners

Комментарии

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

    This one video explained my 1.5-hour lecture of 50+ slides. Your video is amazing

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

    I have no words . Big thanks and respect👏

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

    Thank you for this...our prof took hours to create a huge confusion

    • @aninditadas5940
      @aninditadas5940 21 день назад

      Glad I was able to help, please share with others

  • @VISHALKUMAR-ll7du
    @VISHALKUMAR-ll7du Месяц назад

    The way you explained it, my professors never...Brilliant work, Mam! Thanks a ton. :)

    • @aninditadas5940
      @aninditadas5940 21 день назад

      I'm so glad you finally understand normalization, thanks for the feedback!

  • @SakurAnsari-bp4xh
    @SakurAnsari-bp4xh Месяц назад

    your videos are so simple to understand. Thank you very much for your efforts

  • @usmankhan-hk4pb
    @usmankhan-hk4pb Месяц назад

    thank you, it s the first time i managed to understand the difference between 3nf and bcnf

  • @Saroj-b6f
    @Saroj-b6f Месяц назад

    Thank you for this, this video were really helpful :)

    • @aninditadas5940
      @aninditadas5940 21 день назад

      Glad to hear it was helpful, please share with others

  • @PawanKashyap-jo6ud
    @PawanKashyap-jo6ud Месяц назад

    An hour before exam, thanks for simple explanation

    • @aninditadas5940
      @aninditadas5940 21 день назад

      You are welcome, I hope it helps you understand the concepts and perform good in the exam

  • @Mani-s2o6x
    @Mani-s2o6x Месяц назад

    This lecturer has perfectly explained all the normalization relations in 15 mins

    • @aninditadas5940
      @aninditadas5940 21 день назад

      Thank you, I am glad to hear it was helpful, please share with others!

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

    You explained these concepts better than anyone else, a big Thanks

    • @aninditadas5940
      @aninditadas5940 21 день назад

      Glad to hear it was helpful, please share with others!

  • @PawanKumar-td6un
    @PawanKumar-td6un Месяц назад

    Best video till now to explain normalization.

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

    Respected mam I have no word explained about your video amazing video

    • @aninditadas5940
      @aninditadas5940 21 день назад

      I'm glad you found it helpful! Happy Learning

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

    I Will recommend this video for anyone who seek concise explanations on normalization relations.

  • @BidyutBhattacharjee-n7l
    @BidyutBhattacharjee-n7l Месяц назад

    Great explanation 👍

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

    I have watched many tutorials but this one stands out. Amazing

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

    The explanations are so clear, and I finally understand how normalization works in DBMS. Thank you

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

    This is the kind of teaching that keeps people interested, great job

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

      Happy learning, hope it helped you understand the concepts!

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

    Your teaching style is fantastic

  • @ShannaJensen-p5i
    @ShannaJensen-p5i Месяц назад

    Thank you for breaking it down so well

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

    Great content thanks

  • @JAKEHurt-w7s
    @JAKEHurt-w7s Месяц назад

    This is the clearest explanation of Normalization I’ve ever seen a big thanks

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

      Thank you! I'm happy to hear that, please share it with others

  • @ZACHARYKey-d9i
    @ZACHARYKey-d9i Месяц назад

    brilliant..thanks a lot

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

    Nice

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

    Student of IEM Newtown(UEMK)

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

    Nice explanation

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

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

  • @Shanwaz-ys3ky
    @Shanwaz-ys3ky 2 месяца назад

    Your teaching style is fantastic

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

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

    • @aninditadas5940
      @aninditadas5940 21 день назад

      Thank you, happy it helped you understand the concepts!

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

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

    • @aninditadas5940
      @aninditadas5940 21 день назад

      Glad to hear I was helpful to clear your concepts, please share with others and Happy Learning

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

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

    • @aninditadas5940
      @aninditadas5940 21 день назад

      Glad to hear it was helpful, please share with others!

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

    how is your video quality so good

    • @aninditadas5940
      @aninditadas5940 21 день назад

      Glad to hear it was helpful, please share with others!

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

    On repeat

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

    Osm editing

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

    Really Nice video

    • @aninditadas5940
      @aninditadas5940 21 день назад

      Glad you found it helpful, please share with others!

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

    🔥🔥🔥🔥🔥🔥

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

    Really good video

    • @aninditadas5940
      @aninditadas5940 21 день назад

      Glad to hear it was helpful, please share with others!

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

    Thank you 🙏 so nicely explain

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

      My pleasure, please share with others and Happy Learning

  • @rinsharinz2148
    @rinsharinz2148 3 месяца назад

    Clearly explained the concept. ❤

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

      Glad it was helpful. Please share with others

  • @anshasati1920
    @anshasati1920 3 месяца назад

    Arguably a best video on ANN Perceptron algo

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

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

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

    I can't wait for your next videos.

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

    Ya he visto este video varias veces.

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

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

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

    Questo video è fantastico!

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

      Thank you, please share with others and Happy Learning

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

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

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

      Thank you, please do share with others

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

    You did an amazing job.

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

      Glad it was helpful, please share with others

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

    Este vídeo é incrível!

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

      Glad the video was helpful, please share and Happy Learning

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

    You did an amazing job.

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

      Glad it was helpful, please share with others

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

    🧑‍🏫Please, provide notes??