Тёмный
No video :(

3.2 Implementation of Stack using Array | Data Structure and Algorithm Tutorials 

Jenny's Lectures CS IT
Подписаться 1,7 млн
Просмотров 1 млн
50% 1

Here I have discussed Array based Implementation of Stack data structure. Explained all the operations(push, pop, peek, traverse) with C program.
DSA Full Course: https: • Data Structures and Al...
******************************************
See Complete Playlists:
C Programming Course: • Programming in C
C++ Programming: • C++ Complete Course
Python Full Course: • Python - Basic to Advance
Printing Pattern in C: • Printing Pattern Progr...
DAA Course: • Design and Analysis of...
Placement Series: • Placements Series
Dynamic Programming: • Dynamic Programming
Operating Systems: // • Operating Systems
DBMS: • DBMS (Database Managem...
*********************************************
Connect & Contact Me:
Facebook: / jennys-lectures-csit-n...
Quora: www.quora.com/...
Instagram: / jayantikhatrilamba
#jennyslectures, #datastructures #stack

Опубликовано:

 

15 авг 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 695   
@arunodaykumar1273
@arunodaykumar1273 4 года назад
mam, you are one of the best instructors of data structures...
@ahmedaminetarib6003
@ahmedaminetarib6003 2 года назад
you haven t seen hanae talei
@thenameisyash8327
@thenameisyash8327 2 года назад
Samajrahe tho
@sanapathisanyasirao6958
@sanapathisanyasirao6958 Год назад
hey how should i write a code in vscode plzz help me
@Tbm4545
@Tbm4545 Год назад
@@sanapathisanyasirao6958 means bhai jaise type karte hai wais ekaro. Waise kya problem hai
@yt_goluyadav
@yt_goluyadav Год назад
Codewithharry ko check nahi Kiya kya bro😂
@saijaswanth5085
@saijaswanth5085 4 года назад
pop("college stuff"); push(" jayanthi mam stuff"); thanks mam
@talhasohail2834
@talhasohail2834 3 года назад
Hhhhh
@Afii544
@Afii544 3 года назад
Yess
@WaniTech
@WaniTech 3 года назад
peek("youtube")
@jaya7320
@jaya7320 2 года назад
Yes guy
@Ajay-jg2fw
@Ajay-jg2fw 2 года назад
Haha
@nandinikumari586
@nandinikumari586 2 года назад
Implementation in C: #include #define N 5 int stack[N]; int top=-1; void push() { int x; printf("Enter data:"); scanf("%d",&x); if(top==N-1) { printf("Overflow"); } else { top++; stack[top]=x; } } void pop() { int item; if(top==-1) { printf("Underflow"); } else { item=stack[top]; top--; } printf("%d ",item); } void peek() { if(top==-1) { printf("Stack is empty"); } else { printf("%d ",stack[top]); } } void display() { int i; for(i=top;i>=0;i--) { printf("%d\t",stack[i]); } } void main() { int ch; do { printf("Enter choice for operation: "); scanf("%d",&ch); switch(ch) { case 1: push(); break; case 2: pop(); break; case 3: peek(); break; case 4: display(); break; default: printf("Invalid choice"); } }while(ch!=0); }
@waniyazulfiqar2181
@waniyazulfiqar2181 Год назад
Can you implement this in java please
@chandrikatallam3083
@chandrikatallam3083 Год назад
Out put please
@Itz_Armaan03
@Itz_Armaan03 Год назад
Can someone tell me why we take n-1 if(top=n-1) Why not Top=n
@kallurishyamsundhar7195
@kallurishyamsundhar7195 Год назад
@@Itz_Armaan03 bcz if stack size is 6 ,then its index starts from 0,1,2,3,4,5 so highest(last) index is 5,but the size is 6 thats the resaon we put top=n-1 top=5 means it reaches maximum size ,i think this will clear your doubt
@manasrastogi5948
@manasrastogi5948 Год назад
Thanks a lot for this program
@bhadreesh787
@bhadreesh787 5 лет назад
Hi Jayanti ma'am now you are like a GOD for so many of the Students, because in our India @ Degree Colleges so many of the Professors themselves they will not be knowing even the BASIC CONCEPTS also, only few Professors like you will be Excellent..We need Professors like you @ clgs..Love you ma'am as your Student😘😘😍
@atashmohire884
@atashmohire884 4 года назад
who is jayanti?....thts jenny
@ombohare6485
@ombohare6485 4 года назад
@@atashmohire884 😁🤣
@pragatipathak9241
@pragatipathak9241 4 года назад
@@atashmohire884 😂😂
@aditishaw2697
@aditishaw2697 3 года назад
Ma'am, you are one of the best teachers I've ever known. You've made it so easy for me to understand all the stuffs that my school teacher made so difficult. Thank you so much ma'am.
@inger6390
@inger6390 10 месяцев назад
And u r one of the best beautiful girl ever see in the RU-vid 😍🥰
@sallydeen7772
@sallydeen7772 3 года назад
Thank you soo much, I've got an exam coming up and you saved me😍 and I'm sure so many more students like me. Your explanation method is soo crystal clear. Thank you. Love and Respect, From Sri Lanka. Thank you ma'm
@hanzalaashraf5605
@hanzalaashraf5605 3 года назад
ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-lU81ibOBthM.html
@gaganlovejesus07
@gaganlovejesus07 Год назад
I am very lucky to find this video and having you as my teacher.
@dailydots3607
@dailydots3607 9 месяцев назад
I m a lecturer at university. I learned teaching techniques from her ❤. She is amazing and really want to say thank you mam 🎉❤
@clintontilahun5689
@clintontilahun5689 4 года назад
thank you, we really appreciate this. from Ethiopia.
@miraklet_20
@miraklet_20 3 года назад
Your lectures are really helpful during examination time mam... Thank you
@anjalityagi3442
@anjalityagi3442 3 года назад
Mam you are really a blessing for me in this pandemic.... when I need a teacher as like you....you resolve all my problems.... Thankyou so much.....
@idlconferencecentreknust6648
@idlconferencecentreknust6648 4 года назад
Jayanti, I can't thank you enough. You are simply phenomenal.
@bikrammajhi3020
@bikrammajhi3020 Год назад
One of the simplest explanation on internet ! Thank you !! You earned a life long subscriber. Respect Mam. ☺
@techbittu47
@techbittu47 Год назад
Watch at 1.5 speed🎉
@sushmitapaul566
@sushmitapaul566 4 года назад
Not my professor but you deserve my semester fees for ds algo
@sanasayyad1872
@sanasayyad1872 Год назад
For real u are the best professor 😭😭
@infobits1886
@infobits1886 11 месяцев назад
Like comment and subscribe with respect and do something in life .. mam will get proper value of her time .. 🙏
@niranjanreddy7022
@niranjanreddy7022 9 месяцев назад
Yes
@tahacreator5304
@tahacreator5304 8 месяцев назад
Ha paid kr do
@akashsarkar1040
@akashsarkar1040 7 месяцев назад
Which clg from u belong , plz say me , I will not admit my child in that clg
@RahulSingh-eq2xk
@RahulSingh-eq2xk 3 года назад
Thanks alot ma'am🙏😍 I had studied whole stack and tree with in one night and the very next Morning I score 55+ out of 77 in theory paper of 12 th premilary exam 😎
@Leelaasantosh
@Leelaasantosh Год назад
Good
@thirupathinaik
@thirupathinaik 2 года назад
Here is C code: Stack with Array #include #include #define N 5 int stack1[N]; int top=-1; void push() { int item; if(top==N-1) { printf(" stack is overflow: "); return; } else { printf("Enter item into stack:"); scanf("%d",&item); top++; stack1[top]=item; } } void pop() { int item; if(top==-1) { printf(" stack is underflow: "); return; } else { item=stack1[top]; top--; printf("poped item is: %d ",item); } } void peek() { int item; if(top==-1) { printf(" stack is underflow: "); return; } else { printf("top most element in stack is: %d ",stack1[top]); } } void display() { int i; printf("items in stack are: "); for (i=top;i>=0;i--) { printf("%d ",stack1[i]); } } int main() { int ch; printf("stack operarations with choices 1 for push 2 for pop 3 for peek 4 for display: 0 for exit "); do{ printf(" Enter your choice: "); scanf("%d",&ch); switch (ch) { case 1: push(); break; case 2: pop(); break; case 3: peek(); break; case 4: display(); break; case 0: exit(0); default: printf("Invalid choice:"); //exit(0); } }while (ch!=0); return 0; }
@itz__ahana_
@itz__ahana_ 2 года назад
Can you please tell what is "default" and why it's used??
@thirupathinaik
@thirupathinaik 2 года назад
@@itz__ahana_ if no case is matched it goes to default case..or unfortunately you've entered choice then in default case you can write invalid choice plz make it right one
@itz__ahana_
@itz__ahana_ 2 года назад
But we haven't mentioned default case in any other portion of code..... And why it's named as default, can't we name it any other name like case5: or wrong case:
@thirupathinaik
@thirupathinaik 2 года назад
@@itz__ahana_ it is a predefined keyword that comes under switch operator..you can't use other than this
@itz__ahana_
@itz__ahana_ 2 года назад
Ok. Thanks.... That's what I wanted to know
@aishwarya1895
@aishwarya1895 3 года назад
I was trying to learn stack since last four days.... Didn't understood anything But after watching your videos....yeah I can say that i understood this... Thanks mam☺
@pradyumnabharadwaja8237
@pradyumnabharadwaja8237 3 года назад
didn't *understand
@ramakrishnagkannari8714
@ramakrishnagkannari8714 3 года назад
Extraordinary ma'am. It was so clear. Full concept was made easy to understand.. Thank you so much
@Jyo-go7gj
@Jyo-go7gj 2 месяца назад
mam, a standing salute for the effort you put into these videos, your teaching is simply amazing, even after 4 years people are relying on your videos, because no matter in which colleges we are , lecturers now a days don't take the burden of making things clear, and they expect us to understand everything without explaining what actually happens there....thank you from the bottom of my heart for the lectures mam ❤
@zapeeosheikh
@zapeeosheikh 2 года назад
Mam You are the Best .... I can't Express the Confidence you gave to me through this Lecture 🥺 May You live Long and Healthy Life Ameen 💗
@bikrammajhi3020
@bikrammajhi3020 Год назад
Simply the best on RU-vid.
@yashwantbasnett2294
@yashwantbasnett2294 3 года назад
Very very helpful videos.... It's not that our teacher does not teach us well but he does not elaborate properly so it's hard to understand but after seeing your lectures my all doubts are cleared so thank you very much😊
@ritiks.hujwant3816
@ritiks.hujwant3816 3 года назад
Thank you mam for such a wonderful explanation.... It will be more blessings for us if you would start making videos on different competitive coding problems and algorithms.☺️
@himabindu9036
@himabindu9036 4 года назад
Mam ur lectures are simply awesome. I am following all your vedios.looking forward for more vedios for software engineering and theory of computation , cloud computing, network security as well madam
@giteshrautela
@giteshrautela 3 года назад
Before watching ur video, I think that stack is very hard to implement. But now my all doubts are clear about stack. And I can easily implement the stack by using array of c. Thank u mam!
@hanzalaashraf5605
@hanzalaashraf5605 3 года назад
ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-lU81ibOBthM.html
@hira5709
@hira5709 3 года назад
Awesome teaching Mam ....Thanks A Lot for explaining everything in detail...........Your lectures are really helping me ...😊
@mdeliyas8838
@mdeliyas8838 2 месяца назад
Unbelievable explanation and i become addicted of watching this channel. thank you from Myanmar or Burma.
@nareshthakare1217
@nareshthakare1217 4 года назад
Thanks mam 😊 for u r stack & array lecture... Its really great effort u have taken... Mam a small request .... Can u please create playlist on c++ computer language learning... It will be great help for me and my friends and many of the students too... Thank you so much mam 😊...
@amangaitam7042
@amangaitam7042 2 месяца назад
Semester exam in 1 hour,but feeling confident after watching your videos 😊
@vipul2994
@vipul2994 4 года назад
amazing explanation, wished you were my class teacher for data stucture. thank you mam :-)
@shonemicheal4935
@shonemicheal4935 4 года назад
Program in c++ #include #include #define max 3 using namespace std; class stack{ int top; int st[max]; int item; public: void push(); void pop(); void traverse(); stack(){ top=-1; } }; int main(){ int choice; stack s; char c; do{ cout
@suhailali3887
@suhailali3887 4 года назад
1 like for Mam Beauty !👍👍👍👍
@surajmehra4670
@surajmehra4670 4 года назад
Jo man nay padhaayaa hai use per Dhyan den . 🤣🤣Mam par nahe
@mominadeen4390
@mominadeen4390 11 месяцев назад
@@surajmehra4670 😂😂😂😂
@anshtiwari5352
@anshtiwari5352 10 месяцев назад
Ye har channel ke comment me Mila hai 😂
@ALIEN_BOSS
@ALIEN_BOSS 9 месяцев назад
My 1 like for your beauty ☺️☺️
@opaligodzilla417
@opaligodzilla417 5 месяцев назад
you should not merely see her beauty, she is a Computer Science Engineer the most powerful and highly paid IIT branch, also she's GATE, NET Qualified
@TeckShivam
@TeckShivam 10 месяцев назад
I Really Like Your Simple and Understandable way of Teaching Thank you I Had Watched Full And Now I Know the Stack Very Well thank You Once Again 🙏🙏🙏
@ManishKumar-rt5yn
@ManishKumar-rt5yn 6 месяцев назад
Ma'am the way you teach is really amazing
@cobbyanimics
@cobbyanimics 10 месяцев назад
After going through a lot of resources, i remembered Aunty Jenny makes it easy so i decided to come here and truly truly, my ma'am didn't disappoint : )
@Hybridakkufitness
@Hybridakkufitness Год назад
hello mam! I am watching your videos for the first year from 1st sem now I am in 3rd sem still I study here I really understand everything thank you❤🌹🙏
@ankurofficialyt1419
@ankurofficialyt1419 4 года назад
Oh I Like The Way 😊 When U Teach Us in your own Style . you Are Great Teacher I Understand Everything Whatever U Teach Us 🙏. Thank You Mam.
@ayeshashahzad9178
@ayeshashahzad9178 3 года назад
So blessed for having you.
@jatinhajela8873
@jatinhajela8873 3 года назад
Thanku mam... Tomorrow is my pre university exam... I am very much worried about this... Topic.. But after taking your lecture.. Now I feeling confident😊
@data_stats
@data_stats 2 года назад
Ma'am understands student's mindset more than students Great lecture Thankyou ma'am 🙏🙏
@vishwabhatt20
@vishwabhatt20 4 года назад
ma'am i'm literally in love with your explanations..all the stuff which our clg faculty teaches us in the lecture...i think sub-consiously at that time that will this topic be found on your channel?....im looking for learning the entire C frm your videos..i hope i will soon be able to do that! Thank you. love love❣❣❣💖
@rajeshsahoo
@rajeshsahoo Год назад
I think your video is changed my life ❤
@harshitnema4197
@harshitnema4197 4 года назад
What i think is that ma'am we don't use semicolon with #define statement! Correct me i am wrong
@giggty6109
@giggty6109 4 года назад
Next level teaching mam😍 Plz bring more FDS videos ... i am totally dependant on you🙂
@SulemanKhan-nn9uc
@SulemanKhan-nn9uc 4 года назад
Hello... Today i saw your video for the first time and found such a great stuff which i am looking for... Great teaching method 👍👍.. I am subscribing your chanel and hoping for some new good stuff... If u saw this comment then plzz reply😊
@lamishajoshi7480
@lamishajoshi7480 10 месяцев назад
Stack and array is same then why to study stack
@Jay_Pee
@Jay_Pee 4 года назад
Please if possible make video on pc, some time it becomes difficult to find out the error n program don't run. But your way of tracking awesome..
@sauravsinha221
@sauravsinha221 4 года назад
You really work hard in order to make everybody understand.Highly appreciated...
@rithinsinghsardar6734
@rithinsinghsardar6734 3 года назад
lanjodka
@sauravsinha221
@sauravsinha221 3 года назад
@@rithinsinghsardar6734 ..?
@kishanpandey1411
@kishanpandey1411 3 года назад
Simple And easy to understand. Moreover, from the very basics. The reader of this comment, If You're trying to understand stack from the very basics and want to know where to apply stacks go through this video.
@purodhachanuthika5898
@purodhachanuthika5898 3 года назад
4 days to the final exam and now i'm getting this as nothing ..... thank you maam this is really helpful .........love from Srilanka
@Shalynee82
@Shalynee82 Год назад
Have Data structures exam tomorrow watching your video… Thank for your playlist😍
@quantizingthings
@quantizingthings Год назад
exams of 3 semester? or minor test
@Telugu770
@Telugu770 Год назад
We love your way of teaching mam❤❤❤❤❤❤❤🎉🎉🎉🎉🎉
@surbhimishra2015
@surbhimishra2015 3 года назад
Thank you thank you so much ma'm my practical exams are there from tomorrow and from your videos I understand everything 👍👍❤️❤️❤️
@natureandculture2280
@natureandculture2280 3 года назад
Tqs madam really you will be done the great job free classes will be tell and also you will be the record also madam in youTube in future. A. K. J 🙂
@03sahbanalam61
@03sahbanalam61 4 года назад
My doubts finally got cleared...Thank u so much mam😊😊
@kulveerkaur9594
@kulveerkaur9594 2 года назад
Thank you so much mam for brilliant lectures 🥰🥰
@vishnupriyamc7340
@vishnupriyamc7340 Год назад
Mam you're very fabulous and a very good teaching if I don't know any code after watching your videos I'm understood
@saramrehmani9955
@saramrehmani9955 3 года назад
very deeply discussed every topic.Keep it up Well delivering knowledge
@akashdeepchauhan5
@akashdeepchauhan5 4 года назад
lovely, explaination. actually , mam i want to read all my subjects from you, because i could not understand anything except your lectures. And at last Iove you.
@ha-il9bd
@ha-il9bd 4 года назад
🤯😂😂
@AnkitThakur-nw1wn
@AnkitThakur-nw1wn 5 лет назад
BEAUTY WITH BRAIN THANKS MAAM
@Mine_shorts01
@Mine_shorts01 4 года назад
I am proud that I am your student. Thanks you ma'am.
@sohailIshfaq
@sohailIshfaq 4 года назад
Listen buddy
@shubhamverma865
@shubhamverma865 3 года назад
I am searching this concept last 1 week finally i got thanks ma'am
@nitinkr.1790
@nitinkr.1790 3 года назад
your explanation is crystal clear mam. Thanks for your efforts
@stech3696
@stech3696 3 года назад
You are a great ma'am .you are very simple teaching the data structures and very few teacter in india
@saadvadanagara3276
@saadvadanagara3276 3 года назад
Mam your explanation are awesome in data structure
@Impromptu21
@Impromptu21 4 года назад
While doing pop operation you stored the poping element in integer y. Then how is the element deleted in stack . Please can you help me out mam.
@Impromptu21
@Impromptu21 4 года назад
It remains if we print it then how we say it is deleted
@csadmirer8515
@csadmirer8515 4 года назад
@@Impromptu21 printing the popped item. i.e deleted item and then u display then it will not show the item u popped
@Impromptu21
@Impromptu21 4 года назад
@@csadmirer8515 it will show na bcoz we are not actually deleting the no. We are just decreasing the top value .... but the no. will remain at that position . It displayed the no which i poped . Please mam help me out .
@csadmirer8515
@csadmirer8515 4 года назад
@@Impromptu21 see the concept which u are talking about is Peek() , i.e in peek the top element is displayed and not deleted.. But the pop() deletes the top element
@atkuriajaykumar3701
@atkuriajaykumar3701 4 года назад
thankyou madam if you have uploaded this video 4 years back .I would have scored more marks in this subject.Not so late now it is useful for my placements thankyou madam
@VishalSoni-eq7fr
@VishalSoni-eq7fr 7 месяцев назад
Thank You So Much Ma'am , these lectures are very easy to understand . Great work and keep it up !
@piumandal6309
@piumandal6309 3 года назад
Mam integer is having 2byte not 4
@pranavchaudhari8016
@pranavchaudhari8016 4 года назад
Mam you have teached so nicely only problem is that while you write a code you r going little fast and when you teach that code in next video if we have taken gap for seeing that video then it is very hard to mug up please explain that also so the learner will enjoy your full teaching video ......and no doubt about your logical explanation its damn good i have watched your playlist for linked list,stacks, data structures basic that helped me for exam .
@deepakanand8699
@deepakanand8699 2 года назад
My guardian angel for my lab internals...... thank you soo much mam......
@bavan692
@bavan692 4 года назад
More than the program i was concentrating on u
@JennyslecturesCSIT
@JennyslecturesCSIT 4 года назад
Thank you for recognizing my contribution. I really appreciate your encouragement and kind words
@swarajsinha01
@swarajsinha01 4 года назад
😂😂😂😂
@shanmukhteja3555
@shanmukhteja3555 3 года назад
Mam u r just awesome .... U helped me to complete my assignment ☺️
@motivationalspot1448
@motivationalspot1448 3 года назад
the most amazing thing is using some urdu/hindi words like "NAW' , "is me" ... you are a good teacher.. would love to meet uh if india issues a visa for meh hehehe.
@dreamerb1
@dreamerb1 Год назад
Best DS playlist
@dreamerb1
@dreamerb1 Год назад
Thanks alot
@mahirsingh8417
@mahirsingh8417 3 месяца назад
15:45 guys just add top++ after the push() function in dowhile loop inside switch because you wont be able to display the elements in the stack as the top is only incrementing in the push function but not incrementing in main function.
@LoveIsLifeTurkishIndia
@LoveIsLifeTurkishIndia 3 года назад
If want to display stack from bottom , then initialize top = - 1 in display function And then top++
@VinayKumar-vv6ud
@VinayKumar-vv6ud 5 лет назад
i never miss your video
@misturaojulari9707
@misturaojulari9707 Год назад
You have just blown my mind! Thank you for making this hard-to-grasp concept exciting and understandable
@rahulrengarajan4091
@rahulrengarajan4091 7 месяцев назад
Mam Nice teaching of data structures really a respect and my humble from Tamil nadu🥰🥰🥰🥰
@prasanthkumar5638
@prasanthkumar5638 3 года назад
❤️❤️❤️good lecture, i had exam tomorrow, thankyou sooo much❤️❤️
@siddh.69
@siddh.69 3 года назад
I'm also preparing for my upcoming exams 😁😅
@might6995
@might6995 Год назад
if any one noticed or not i don't know but integer take space of 2 bytes and mam take 4 bytes on 0:45 but you are the best teacher mam 😇
@miyu8235
@miyu8235 Год назад
brush up your knowledge bro, integer take 4bytes space not 2bytes.
@Payal_Ojha
@Payal_Ojha 7 месяцев назад
I salute your efforts miss ... I'm damn sure that your hard work will result in my placement one day...!! Thanks and love from Indore ❤❤
@prathamtanwani4276
@prathamtanwani4276 3 года назад
It is really tough to understand the way you use to teach but thanks as you have made these lectures
@shivamchhabra7135
@shivamchhabra7135 4 года назад
Awesome explanation mam , ur way of teaching is beautiful 😍 Thank u so much
@mdabrarahmed213
@mdabrarahmed213 4 года назад
Ma'am is also beautiful bro🥰
@shivamchhabra7135
@shivamchhabra7135 4 года назад
Misc Channel Yes she is very beautiful ❤️❤️❤️
@monikumari6549
@monikumari6549 2 года назад
Q.3 Implement a minstack in C by designing a stack with push, pop and min functions, where min( ) will return the minimum value in the stack. Can you help me to get codes for above exp.🙏🙏
@shivamchhabra7135
@shivamchhabra7135 2 года назад
@@monikumari6549 I don't know data structures that much , but i will get back to you soon as soon as i get the solution, but I can't promise you on that , if i find the solution, will definately provide you
@monikumari6549
@monikumari6549 2 года назад
@@shivamchhabra7135 ok thank you
@DR-wp9ol
@DR-wp9ol 3 года назад
Thank You so much Madam, Great Explanation !! from Sri lanka ❤
@miheerhasabnisd3930
@miheerhasabnisd3930 2 года назад
Thanks mam for the video, your videos are best on youtube for data structures and algorithms
@KajalKumari-pn7db
@KajalKumari-pn7db 3 года назад
Mam ur videos clear my all doubts and ur explanation is too easy to understand
@muhammadtaha4567
@muhammadtaha4567 3 года назад
Explained far better than university teacher. You are doing a good job. Keep it up!\
@dheerajreddy2704
@dheerajreddy2704 3 года назад
Mam u r teaching way is awesome But if u RUN the program and add that to u r vedio it will be better
@user-jt7st6vn7r
@user-jt7st6vn7r 2 месяца назад
Thank you ma'am.... you helped me alot...❤❤...for my internal.
@valorantempress3847
@valorantempress3847 3 года назад
We initialized top = -1 therefore we can't put i = top in the for loop of the display function. instead, we should take i = n-1
@souvikroy3584
@souvikroy3584 14 дней назад
Very easy to understand Thank you mam ✨
@advancegamer8599
@advancegamer8599 3 года назад
Mam you are so beautiful ❣️ & your teaching style is also same so awesome .
@sasikirankakara3773
@sasikirankakara3773 4 года назад
Mesmerizing Teaching mam really awesome mam!!!
@Haasini_Satwika
@Haasini_Satwika 4 года назад
You are simply great , you are way of teaching is great
@user-en4sl4lq4w
@user-en4sl4lq4w 8 месяцев назад
I have enjoyed your data structure lessons so far
@KajalKumari-pn7db
@KajalKumari-pn7db 3 года назад
U r the best teacher of data structure
@dimplegoyal8418
@dimplegoyal8418 4 года назад
Really man when i see Ur video lctr..na chkr bhii pdhne ka mn krta h
Далее
would you eat this? #shorts
00:39
Просмотров 370 тыс.
Мухочирон эхтиёт бошед!
01:31
Просмотров 116 тыс.
Linked List Implementation of Stacks (Part 1)
9:24
Просмотров 206 тыс.
Introduction to Stacks
8:34
Просмотров 493 тыс.
would you eat this? #shorts
00:39
Просмотров 370 тыс.