Single Linked List (Deleting the First Node)

Поділитися
Вставка
  • Опубліковано 22 жов 2024

КОМЕНТАРІ • 53

  • @anusmitsaha8604
    @anusmitsaha8604 4 роки тому +24

    It's our humble request please sir increase the frequency of data structures and algorithms. It's the most demanded subjects for CS students and also for other branches who are giving GATE in CS/IT or are preparing for campus placements. Please sir, truly speaking, no one teaches this topic better than you in the entire You Tube family.

    • @fheiz8802
      @fheiz8802 Рік тому +3

      read this in indian accent

  • @interestingfacts922
    @interestingfacts922 3 роки тому +14

    Don't say thank you for watching..... We have to say thank you very much for doing this lectures.

  • @maca4137
    @maca4137 4 роки тому +18

    Awesome lecture sir, and today also you uploaded, I'm very happy and i hope daily.... videos on data structures will be uploaded like this only...thank you sir😊

    • @maca4137
      @maca4137 4 роки тому

      I have one doubt. Sir are you going to do videos about array topic in data structures again or array part in C programming language is enough?

    • @venkatarohitpotnuru38
      @venkatarohitpotnuru38 2 роки тому

      @@maca4137 sir is telling array parts in linked lists only

  • @afifacse9815
    @afifacse9815 2 роки тому

    sir your explanations are amazing, you first explain logic and then the program which just makes it so much easier.

  • @bhaskerupreti9969
    @bhaskerupreti9969 4 роки тому +2

    Best teacher I've ever met.....

  • @Physics_For_Life_01
    @Physics_For_Life_01 4 роки тому +5

    Your videos are always amazing .
    Sir your teaching method is so good you can explain complicated things in a very easy manner.
    Thank you so much sir🙏🇮🇳😄
    Keep making these type of videos

  • @kashifjalal8616
    @kashifjalal8616 3 роки тому +2

    Is it possible for you, guys, to upload all the lectures on data structures such as on queues, priority queue etc.

  • @universe449
    @universe449 Рік тому

    Amazing explanation sir 😁🎉🎉😊😊❤❤❤❤❤❤❤❤

  • @___vijay___
    @___vijay___ 4 роки тому +30

    How many of you found the tricolor in the code!!

  • @RELAXANDLISTEN6440
    @RELAXANDLISTEN6440 8 місяців тому

    precise and excellent

  • @rohinisingh6916
    @rohinisingh6916 2 роки тому

    Outstanding explanation sir 😌😌

  • @kasinathvaradi357
    @kasinathvaradi357 3 роки тому

    Can we use directly head in while loop..?while(head!=null)
    Why it was neede that head = ptr, and then ptr was using in it..?

  • @adarshsrivastava7092
    @adarshsrivastava7092 4 роки тому +1

    Thanks for this

  • @alxx736
    @alxx736 Рік тому

    About the temp Node . What if you are using Java ? The temp node should be pointing to null?

  • @prayanshusharma9778
    @prayanshusharma9778 4 роки тому

    Sir ,plz make more videos on the topic of stack,queue and tree.so that I understand it

  • @shubhamdas6519
    @shubhamdas6519 Рік тому

    really easy to understand....

  • @deepakrai9683
    @deepakrai9683 3 роки тому +1

    Sir it's my humble request...... please add full code in description

  • @uttamkarmakarece3534
    @uttamkarmakarece3534 3 роки тому

    Love to see that he uses India's tri colour in the every presentation 🇮🇳🇮🇳🇮🇳

  • @dipeshsamrawat7957
    @dipeshsamrawat7957 3 роки тому

    I love Neso Academy. 💝

  • @9996455921
    @9996455921 4 роки тому

    please upload the videos about stack also

  • @divyaagarwal3563
    @divyaagarwal3563 2 роки тому

    Thankyou sir

  • @devkaneria8669
    @devkaneria8669 Рік тому

    YOU ARE A LEGEND

  • @manuelconte2127
    @manuelconte2127 Рік тому

    Short but exhaustive !

  • @basharatmir4025
    @basharatmir4025 2 роки тому

    thankyou so much

  • @iam_epa
    @iam_epa Рік тому +1

    What is the free function

  • @NishaYadav-pj5mm
    @NishaYadav-pj5mm 4 роки тому

    What can we pass reference of head and no need to return head pointer ??

  • @tulikagupta3998
    @tulikagupta3998 3 роки тому

    can you please post a code for taking input from user coz it is very confusing

  • @devkitrivedi
    @devkitrivedi 6 місяців тому

    its good idea

  • @reverbism
    @reverbism 2 роки тому

    thank you 8/04/2022 at 2:22 am

  • @maca4137
    @maca4137 4 роки тому

    I have one doubt. Sir are you going to do videos about array topic in data structures again or array part in C programming language is enough?

  • @Eng.RajniPaneru
    @Eng.RajniPaneru 4 роки тому

    Sir plzz make a vedio on double linked list plzz sir it's a humble request from my side plzz sir

  • @vishalchauhan6468
    @vishalchauhan6468 Рік тому +1

    Head is not declare

  • @kajalmondal9745
    @kajalmondal9745 4 роки тому

    Sir when next part of Operating system is coming?

  • @ApnaCodingSchoolOfficial
    @ApnaCodingSchoolOfficial 2 роки тому +1

    ptr not declared sir

  • @muskangarg1107
    @muskangarg1107 Рік тому

    My code is not running. Can someone please provide the full code with the creation of the list as well.

  • @mohamedyounis4058
    @mohamedyounis4058 3 роки тому

    why cant you just take head by refrence (pointer to pointer) instead of return it

  • @gopalakrishnagootala4382
    @gopalakrishnagootala4382 2 роки тому

    Super

  • @hiralalumeshkumhar1054
    @hiralalumeshkumhar1054 4 роки тому +2

    Sir it's not working I tried all codes than too your concept is not working.Sir please can you show the output practically please😀.

  • @prachid3990
    @prachid3990 3 роки тому

    Why can't we directly write
    if (head == NULL)
    {
    printf("List is empty!");
    }
    else
    {
    head = head->link;
    }

    • @akkumar8768
      @akkumar8768 3 роки тому +2

      as the first node is still present and consuming memory unnecessarily ..hence it is a good practice to free that node.

  • @jayeshkulkarni226
    @jayeshkulkarni226 Рік тому

    ptr not declared

  • @siham8788
    @siham8788 2 роки тому

    you made me doubt my own headphones

  • @jayeshpobari6565
    @jayeshpobari6565 4 роки тому

    sir i request you pls provide me your computer networking lacture's ( 97 lactures ) PPT ..please i humbly request you 😖😖😭 if u provide me i sent my Gmail ID ..