I am mechanical students l got AIR 6th rank in GATE PI . 11 times I qualified GATE. l did my M Tech from IIT Madras. This year I am writing GATE CSE. Neso academy vedios is better than other online source for GATE aspirants as my opinion. Thank you so much.
@anonymouscse6433 Жыл бұрын
Bhai videos hota edited karke bhi galat hai 11 times qualified
@Uknwnwizard Жыл бұрын
11 times 😂
@saaranshjain9618 Жыл бұрын
Bro became father before going for M Tech 🤣🤣
@studymaterial6465 Жыл бұрын
@@anonymouscse6433😂😂
@danishabbasofficially Жыл бұрын
Yes of course... I'm from Pakistan I can't afford a package of Neso App but this channel helped me a lot.
@qwertypwnown2 жыл бұрын
One of the best teachers on the internet! Many thanks.
@nandinirm22342 жыл бұрын
Best explanation I love the background ....pleasant for eyes and font size ....everything perfect
@sheelkumarigupta52733 жыл бұрын
Please upload the series soon.i need to study.your way of teaching is amazing.. I'm requesting plz upload as soon as possible
@computer_tech98 Жыл бұрын
The best explanation for the begginer student and also it looking best❤ thank you sir
@phanikumarsimhadri8124 Жыл бұрын
Excellent Explanation
@Sovit7053 жыл бұрын
why don't do they like this video? Please motivate the maker of the contents for a wonderful presentation of the topics.
@shantanukulkarni8883Ай бұрын
I would like to add why time complexity is O(1) for deleting at beginning but O(n) for deleting at end. If there is tail pointer, we can directly access the last node and add new node to it- So that is O(1). But for deleting, we need to find second last node which requires traversing.
@Mr_Memer01_ Жыл бұрын
What an explanation ❤🎉 Sir I've viva and practical tomorrow Thanks sirji ❤️
@satyamrana54623 жыл бұрын
Thank You So Much Neso Academy, Please Keep Making Videos You Are Really Doing a Great Job. I found such a great explanation of all these topics here.
@ahiamatagabriel56962 жыл бұрын
God bless neso academy
@sakshikarale67583 жыл бұрын
Plz upload the videos as soon as possible... Thanks for this series and it is superb.
@Ankittiwari-yk8ix2 жыл бұрын
we can also form a dynamically allocate array...during the run time we can input the size of the array. so we do have not to worry about the size of the array.
@amandawanaprinceh1058 Жыл бұрын
very true. the reason given for why we need a linked list vs an array for the stack was not valid. During the run time also we can dynamically allocate the array size.
@net.navigator Жыл бұрын
the main idea behind the linked list is that we can use memory not only in a contiguous fashion. for extreme sets of data, allocating continuous memory is not a great idea to go with. yes you can realloc array and add size dynamically but in the linked list the data can be stored in available memory cells during run time and the storage need not be continuous
@hereyoursdad2 жыл бұрын
very very good insight especially when i was confused that where the head will be define i got resolutions thanks
@bushrahussain300510 ай бұрын
Top== NULL can be top== -1
@Lil-Diva2 жыл бұрын
Tysm sir💜
@dipeshsamrawat79573 жыл бұрын
I love Neso Academy :)
@accessdenied93933 жыл бұрын
Keep up, sir
@johanliebert675 Жыл бұрын
Pov:you have exam tomorrow
@rahufkhan90763 жыл бұрын
Please complete the playlist. Upload the video regularly sir please...
@bilalmohammad42422 жыл бұрын
thank you man, it was an awesome explanation!
@sandeepgharusandeepgharu8269 Жыл бұрын
Brilliant 👌
@timacorn2536 Жыл бұрын
if there was a doubly linked list we could have top as the end pointer right? since we can always go back and set it to the 2nd last pointer
@RahulSingh-yx8rw3 жыл бұрын
First comment , I'm waiting for this video. thank u so much👍
@parvahuja76182 жыл бұрын
thankyou neso love you
@gagansalian80711 ай бұрын
good one😄
@sivasaile51632 жыл бұрын
You guys are truly amazing ❤️
@sumedhraut18533 жыл бұрын
Please upload the next video's as soon as possible sir...
@iatomic_19 ай бұрын
i just had to comment man, kudos
@thefattyguitarist66232 жыл бұрын
But what if while pushing a node into linkedlist we keep track of both top and previous top (by another pointer variable) And then push This will reduce time complexity to O(1)
@vaibhavkurale50163 жыл бұрын
Data structure series complete hobe mai kitane din lag jayenge🙏
@suyashkumar88403 жыл бұрын
2 saal
@JohnDoe-kj2cs3 жыл бұрын
@@suyashkumar8840 bs
@nikhilsastry66313 жыл бұрын
7months
@brijeshkumarverma1223 Жыл бұрын
starts at : 4:48
@HopeNHopes7 ай бұрын
الحمدالله للوجود النسو آکادمی 🤞😗
@gandhamprakash Жыл бұрын
for example i want to delete the firstly created node in the list(stack operation at begining of list),it also take O(n) ...
@kowshik-gu7cw3 ай бұрын
Time complexity of inserting an element at the end in linked list also order of N because this also traverse to insert
@rajeshprajapati48633 жыл бұрын
❤️❤️❤️
@souvikmidya82333 жыл бұрын
Please sir complete the playlist . I am watching the playlist for last 5 months and it's still going on.
@rajeshprajapati48633 жыл бұрын
Do not ask for the quick completion. Just leave it as it is.
@CodeShode3 жыл бұрын
how is time complexity of adding at the end of a singly linked list is constant. Isn't it O(n)?
@collegematerial53483 жыл бұрын
yes you are right
@gamingwithindian84922 жыл бұрын
because the top pointer always pointing to last node of the list
@monjurulkabir89597 ай бұрын
Yes it should be O(n)
@zainabrehman-w7e7 ай бұрын
Yes because in stack the top always represent the last node@@gamingwithindian8492
@zainabrehman-w7e7 ай бұрын
We are discussing stack here not simple linkedlist
@rajatshimpi455 Жыл бұрын
do we only need to learn SINGLY LINked list for this chapter or do i need to know all like circular ,doubly etc ???
@sangramganta42659 ай бұрын
sir please upload next data structures lectures please sir
@adityabhattad46142 жыл бұрын
What if we maintain pointer to second last element, the problem will be easily solved... isn't it?
@ShashankPidigovula22 күн бұрын
Can anyone explain how time complexity of removing the last node is O(n) (at 6.06) He is saying to get the address of 40, to make it's next as null, we need to traverse the entire LL, But can't we access it by saying top.prev Or We can't access as we're dealing with singly LL here And so the time complexity will be O(n) here and O(1) in case of DLL
@Bad_Agent Жыл бұрын
5:38
@vaibhavinakate97553 жыл бұрын
When the next video is coming
@divinechijindu746510 ай бұрын
Have a tail pointer and make your life a bit easier?
@junaidnaik-pu7dp2 ай бұрын
RCB❤❤❤
@anshurajsinghranawat67323 жыл бұрын
But sir STACK use LIFO property and in the linked list represention first node print in first so how stack property is true in linked list represention Thank you ❤