Thank you very much sir may you stay healthy and keep sharing your knowledge. This explanation helps me a lot.
@ratankhalsa60346 жыл бұрын
What simple and amazing explanation. Thank you so much!
@sauraV_Verma5 жыл бұрын
You forgot to mention the case of deleting an empty list where you print an error message. However trivial it may sound but this completes the solution.
@ayeshajamil57133 жыл бұрын
Your method of teaching is sooo welll😍😍😍
@soumyaa11907 жыл бұрын
Vivek, your explanation of the logic is too good. Could you please post the code's in javascript as well.
@josueteodoromoreira89214 жыл бұрын
just convert it to your language mate
@analyticstamizan6775 жыл бұрын
sir your videos are very easy to understand the concept..thanku....
@fahadmakabugo21144 жыл бұрын
This is the best explanation I have seen.
@mayurtakate51387 жыл бұрын
sir your really to good.....please make video on programming of Trees & Graphs
@muhammadkashif194 жыл бұрын
Hi Sir The way of your teaching is so good Keep sharing your knowledge in this way we wil always support you...:)
@patelhuda55426 жыл бұрын
Sir ua explanation is really oustanding it makes DS a bit easyy.. it would be very nice if do explain one program with each algorithm...
@devotion_surya37414 жыл бұрын
Wow sir, hats off what an amazing explanation.
@ConnectBhawna3 жыл бұрын
thank you sir for sharing your knowledge .It is really helpful for me .
@vivekanandkhyade3 жыл бұрын
Thanks Bhavana
@bitsread72496 жыл бұрын
Good, i understood the inserting more. I wish you could write algorithm for this rather than the code. The inserting was perfect. You are good, Thank you.... I've subscribed and i click notification wink
@tlikhitha53385 жыл бұрын
Sir ur explanation is helping me alot.thank u so much sir
@sandhyanityasri13076 жыл бұрын
Sir ur explanation is very gud and simple. Thank u sir.
@RajPatel-is8em5 жыл бұрын
Thank you very much sir.love from gujarat🤩😍😘
@sanjaykumargupta62615 жыл бұрын
ur video is awesome sir .its a humble request to u to make all the video related to data structure.
@prajaym31145 жыл бұрын
Please make a video on stack and queue 🙂
@sangappam2177 жыл бұрын
explain this program sir delete the node containing even values and we need to make a new linked list of only even node
@anupbisoyi5 жыл бұрын
Please explain delete last occurrence of an item from linked list in a separate video.
@md.jiarulislam20684 жыл бұрын
Amazing Explanation, Sir....Thank you sir
@monisattili76427 жыл бұрын
Thank you man , your videos very helpful for me , keep going
@vivekanandkhyade7 жыл бұрын
Thanks Monis..!
@sushant35304 жыл бұрын
@@vivekanandkhyade Sir plz give Github link of program of this video it would be highly appreciable and thankful . or sir make a running program video. plz
@vishnuvardhan-md1ux7 жыл бұрын
hello vivek thankyou for your videos please do a video on infix to postfix conversion
@vivekanandkhyade7 жыл бұрын
yes sure vishnu....
@sushant35304 жыл бұрын
@@vivekanandkhyade Sir plz give Github link of program of this video it would be highly appreciable and thankful . or sir make a running program video. plz
@revatineigapula47475 жыл бұрын
sir its really nice but can u give me some example in single linked list by taking numbers.
@ameenabeehanasi59697 жыл бұрын
Can understand easily now!. Thanks so much
@vivekanandkhyade7 жыл бұрын
Thanks Ameena..!
@paramkhurana55784 жыл бұрын
Hi Sir! Thanks for an awesome video! But, I cannot find the code in the Github repository. Could please put the code in your GitHub repository? Thanks🙏😊
@nicholas_as5 жыл бұрын
at 9:28 can we refactoring the code so we don't need if syntax after the code breaks from while loop into this : q =>P next. Because i think this code can be applied when we want to delete node in the middle or in the last. If we want to delete the last node, we know that p next is null since it breaks from while loop. then the pointer q should point to p next... any opinion ???
@AlgoXperience6 жыл бұрын
sir really u r really .....,.,.,..,.,}
@yogalakshmi12065 жыл бұрын
Can u make it a single program which consist of all the implementation sir
@kiranappu30647 жыл бұрын
thank u for this video mrs viveknand......... may i this code link plz as soon as possible
@buskilamaor95877 жыл бұрын
what happens when the input is 1000 -> 1000 - > 1000 and k = 1000, aren't you left with the head element not null and its "next" is null??...somehow i tweak the algorithm but in any try some case works but other fail..
@zelekethomas30286 жыл бұрын
thanks,I understand many things from your channel
@anupgn62066 жыл бұрын
Video is good,but 1 kind correction i.e its not delete(p)....its free(p)
@andreassoteriou56025 жыл бұрын
He deleted the node of the value that person entered. not the node that person entered..
@rumaborah12297 жыл бұрын
thank you for this video and plz do a video on stack implimentation using link list
@vivekanandkhyade7 жыл бұрын
Thanks Ruma.....will do video on stack using linked list..!
@sushant35304 жыл бұрын
@@vivekanandkhyade Sir plz give Github link of program of this video it would be highly appreciable and thankful . or sir make a running program video. plz
@LahoreFilms5 жыл бұрын
hi vivek! I am Hussain from Lahore Pakistan i have seen lot of your algorithm videos for help and today i went to the link you gave for complete code please dont mind i want you to know that the interface or the theme you used for your blog is not user friendly . as it is difficult to find the correct or required output in small time there is need to manipulate every single link or link you gave at the home-screen. Regards your student from Pakistan.
@LahoreFilms5 жыл бұрын
one more thing i have learnt lot from you using KZbin platform.
@akhil17865 жыл бұрын
i want full program with executed
@katrinejensrud5374 жыл бұрын
thank you so much!best explanation
@ayushshrivastava6965 жыл бұрын
sir you explained well but this program will not run
@mahamnadeem62446 жыл бұрын
i want full based method of writing a link list code in c++ which can be compiles also
@enigmaticgale74365 жыл бұрын
i think, in internal deletion , there should be q=p->next; instead of, q->next=p->next; because we are linking the q to the next of p,not linking next of q to next of p.
@areejgul87254 жыл бұрын
Please add whole program in your description box or give a cpp file
@ponnuvel6596 жыл бұрын
I found bug in your code... what will happen if data is not present in linked list..you will get segmentation fault.so make it fix. apart from that great technique to delete the node. Thank you:)
@MUHAMMADUSMAN-rx9df6 жыл бұрын
use if then else if then else not found
@jayalakshmiappurubuktha30966 жыл бұрын
Thanks sir it was very useful to me
@lakshmidvs32586 жыл бұрын
very nice explanation sir
@BRIANZ-h2t4 жыл бұрын
REAL NICE EXPLAINATION
@thesoftwareengineer174 жыл бұрын
hey i guess it will be while(p.data!=d && p!=null) . And there will be a condition to checkif(p==null) and if so it mean data does nto exist in the list
@tharunyajayaseelan96746 жыл бұрын
I understand your explanation. Thankyou
@farheenazeem95114 жыл бұрын
nice explanation! Thank u so much..
@GlobalHuntersTech5 жыл бұрын
sir yu are amazing................
@s.a.musharaf82914 жыл бұрын
Nice explanation!
@shubhenduinfotech59926 жыл бұрын
Thanks this videos helped me😀😀😀
@supriyapurohit10904 жыл бұрын
Thank you soo much sir!!!
@logic_master9506 жыл бұрын
Thanks a lot , you are the best indeed
@mukeshmkssolanki5 жыл бұрын
Sir single linked list me short ka video bnaana plz
@ThuongPham-wg4bc4 жыл бұрын
absolutely clear. thank sir
@balain53914 жыл бұрын
Why we are maintaining two pointers p and q, instead we can do directly ptr.next = ptr.next.next
@AKHILDS-j3v7 жыл бұрын
you are amazing thans sir
@akshaymomle82316 жыл бұрын
Sir u r great....... Thank uuuu
@falala95705 жыл бұрын
You are amazing!
@sagarjauhari64916 жыл бұрын
Thank u for this class, sir !
@revathybaskar9940 Жыл бұрын
Sir can you give algorithm for this
@picklughosh99945 жыл бұрын
sir linked list ka ek playlist kar do na toh acha heta hein
@andreassoteriou56025 жыл бұрын
My problem is that you delete the node of the value that the persnon entered. What about deleting the node that the person entered. for ex: i say delete the 3rd node... and not the '15' which is the value of 3rd node..
@mradulbohra28975 жыл бұрын
i guess in that scenario we will run the loop having a variable 'k' having an initialising value of '1' and we will take the value of node from the user in a variable called "position" and in every iteration we will be doing k++ and after every increment we will check if(k==position) and then proceed in the same way
@priyammukherjee97255 жыл бұрын
what does this d denote?
@Abhiraj911976 жыл бұрын
if desired node value not found then this algo will delete last node anyway its absurd ..
@subhankardey38135 жыл бұрын
Sir make video on stack or queue
@vaishavielayaraja90785 жыл бұрын
Pls post trees and graphs sir
@FactQuest-siuu6 жыл бұрын
requested please to have a bit larger board and speak fluently beside this awesome job
@kaustubhpatil6515 жыл бұрын
yeah just speak fluently sirji. It will have a good impression on viewers
@evelynkabiite84075 жыл бұрын
Amaizing!!!
@fatimayousaf21566 жыл бұрын
make a video to generate singly linked list and disply it on screen
@xDxDFabian5 жыл бұрын
nice dude! keep it up!
@tianhao77835 жыл бұрын
nice explaination~~~
@amiratnapuri76783 жыл бұрын
Thanks bro
@khimratibrahim33094 жыл бұрын
Head node tu nhe huta but head pointer huta...but now you say that Head node
@prakhartiwari19534 жыл бұрын
Can i use this code in exam as algorithms ??
@codingguru48654 жыл бұрын
Check this Tutorial on Data Structures kzbin.info/aero/PLbRk-vKGcVtbyctZWP9SUYewwUfx75CpZ
@PraveenKumar-ft2kr4 жыл бұрын
Thank you sir 😊
@sachinbhardwaj26795 жыл бұрын
Quite helpful
@vick29206 жыл бұрын
Sir please add delete a node and insert a node in github
@chriscozilas5 жыл бұрын
i love you🔥
@josueteodoromoreira89214 жыл бұрын
oloko kkk
@neerajrai91977 жыл бұрын
osm sir
@vivekanandkhyade7 жыл бұрын
Thanks Neeraj
@sushant35304 жыл бұрын
@@vivekanandkhyade Sir plz give Github link of program of this video it would be highly appreciable and thankful .
@shantanutiwari32877 жыл бұрын
Why such complicated code? Can u Plz write only the code thart u hav done in the inserting algorithm
@sdsouza17537 жыл бұрын
lol
@adithilife6962 Жыл бұрын
nice
@Vineetkumar-qz4wj4 жыл бұрын
Thanks sir
@mishamohan92986 жыл бұрын
thnk u sir
@anjalir85045 жыл бұрын
thanks sir
@maleselalehlogonolo77476 жыл бұрын
STACK INSERT AND DELETE
@unnamedsoldier16 жыл бұрын
Thank you
@partz69906 жыл бұрын
Brilliant🖒
@sayeedkhan48866 жыл бұрын
Sir can u give us java demoo
@OmPrakash-zp3ov6 жыл бұрын
Unable to delete the First/Head node , can you help me with below JAVA code snippet. Thanks public static void delete(ListNode head, int element) { ListNode q = head; ListNode p = head.next; int d = element; if (q.data == d) { head = p; q.next=null; System.gc(); //Unable to delete the first node Why? } else { System.out.println("Is I ma else"); while (p.data != d) { p = p.next; q = q.next; } if (p.next == null) { q.next = null; } else { q.next = p.next; p.next = null; } } }
@sidruhela75955 жыл бұрын
Bhai yr bhot tdga pdhate ho yr ap Koi unphad bhi smj jae
@dhruvilpujara15236 жыл бұрын
How to move the last node of a linked list to the middle of the list: Do check this out - kzbin.info/www/bejne/qqS1on55prqXf7s