Sir, First of all, thanks for the awesome explanation and code, you did a great job here. I just wanted to draw your attention to a small issue, that insertion at the beginning will fail if there is no element in the list(i.e. self.head is None) I added this and it is working fine: ## insertion at the beginning def insert_at_beginning(self,data): n=Node(data) if self.head is None: self.head = n else: temp=self.head temp.previous=n n.next=temp self.head=n
@getstarted12132 жыл бұрын
what a amazing man really explainations are really simple
@dipitjaywant80442 жыл бұрын
Thank you for the lectures, it has cleared my doubts about inserting node in a doubly linked list
@premswaroop43372 жыл бұрын
Thanks for the explanation sir Ur explanation is simply superb 💯 Top notch Best wishes from Hyderabad 🎉
@asha17083 жыл бұрын
Best teacher for ip❤👋🏻💯💯🙏🏻🙏🏻
@lalithasrisaimanasak9118 Жыл бұрын
sir your lectures was awesome sir really very helpful
@sundark60852 жыл бұрын
doing Great job
@jeezz41283 жыл бұрын
Sir also make videos on stack,queues and trees using python
@divakarvutukuri-mc6mz Жыл бұрын
sir please upload all DSA in python sir
@utkarshupadhayay972 жыл бұрын
Sir iss playlist ke aage ke videos bhi daal do please
@devendhark41973 жыл бұрын
Hi bro i need full course Data science
@iam_indrasish2 жыл бұрын
n would be n1 during 5.01
@karrisagar31272 жыл бұрын
Sir please can u share Notesh regard this course
@rockyrocky77233 жыл бұрын
Work day course ante enti sat
@Wahajaslam-p5o Жыл бұрын
Sir plz explain in Urdu or hindi
@santhipriya30432 жыл бұрын
Sir we need notes more usefull for us
@aithammuddukrishna27123 жыл бұрын
Hi bro i need full java subject ?
@rockyrocky77233 жыл бұрын
Sir please
@ganeshpichuka61923 жыл бұрын
Sir i ha a doubt what will happen if we not define temp varable while inserting data in begining of the list