hi Sis,these are really worth videos thanks a lot for sharing the content . Guys who are reading the comment and really want to learn Data Strucures in Python,here is the Amulya Sis who always explained in a laymen terminology so that everyone understands. And one small request guys, since this sister is doing this much for us,pls donot skip the adds,just watch fully ,pls donot skip, so that our sister will get the income. This is the least way we can help her. Thanks SIS
I created Queue by my own :) CODE: Queue = [] limit = int(input("Enter the limit of stack: " )) def isFull(): if len(Queue)==limit: print("Queue is full") def isEmpty(): if len(Queue)!=limit: print("Queue is not full") def Enqueue(): if len(Queue)==limit: print("Queue is full") else: element = input("Enter the element: ") Queue.append(element) def Dequeue(): if isEmpty(): print("Queue is empty you can't perform dequeue operation") else: print(Queue.pop(0)) def Display(): print(Queue) while True: print("What operation you want to perfrom enter option number") print("1. Enqueue") print("2. Dequeue") print("3. isFull") print("4. isEmpty") print("5. Display") print("6. Exit") option = int(input("Enter the option: ")) if option==1: Enqueue() if option==2: Dequeue() if option==3: isFull() if option==4: isEmpty() if option==5: Display() if option==6: break
@Raghav hi Sis,these are really worth videos thanks a lot for sharing the content . Guys who are reading the comment and really want to learn Data Strucures in Python,here is the Amulya Sis who always explained in a laymen terminology so that everyone understands. And one small request guys, since this sister is doing this much for us,pls donot skip the adds,just watch fully ,pls donot skip, so that our sister will get the income. This is the least way we can help her. Thanks SIS
Very nice video specially in such easy to understand language ..only thing is if somehow u can share the presentation it would have really great to revise after watching each video..thanks for these videos..God bless you ❤️❤️❤️
Please make videos on how to implement a Queue using 2 stacks.....and a stack using 2 Queues. ...and a stack using one queue .....etc in Python explaining each line of code
your content is better than most of the paid courses
I loved the accent. More than that I loved how short and precise the content is.
hi Sis,these are really worth videos thanks a lot for sharing the content .
Guys who are reading the comment and really want to learn Data Strucures in Python,here is the Amulya Sis who always explained in a laymen terminology so that everyone understands.
And one small request guys, since this sister is doing this much for us,pls donot skip the adds,just watch fully ,pls donot skip, so that our sister will get the income. This is the least way we can help her.
Thanks SIS
Thank you :)
Nice video!
My implementation of Queue
class Queue:
def __init__(self) -> None:
self.s = []
def enqueue(self,item):
self.s.append(item)
def dequeue(self):
try:
popped = self.s.pop(0)
return popped
except:
return "Can't pop from empty list!"
def peek(self):
return self.s[0]
mam i watching lot of python tutor's videos now but when i starting time your all videos well understanding to help me. thank you
Glad to hear that :)
Maam u teaches wonderfully.... Please make videos on backtracking problems...and about all the concept and topics of data structure
Sure :)
I created Queue by my own :)
CODE:
Queue = []
limit = int(input("Enter the limit of stack: " ))
def isFull():
if len(Queue)==limit:
print("Queue is full")
def isEmpty():
if len(Queue)!=limit:
print("Queue is not full")
def Enqueue():
if len(Queue)==limit:
print("Queue is full")
else:
element = input("Enter the element: ")
Queue.append(element)
def Dequeue():
if isEmpty():
print("Queue is empty you can't perform dequeue operation")
else:
print(Queue.pop(0))
def Display():
print(Queue)
while True:
print("What operation you want to perfrom enter option number")
print("1. Enqueue")
print("2. Dequeue")
print("3. isFull")
print("4. isEmpty")
print("5. Display")
print("6. Exit")
option = int(input("Enter the option: "))
if option==1:
Enqueue()
if option==2:
Dequeue()
if option==3:
isFull()
if option==4:
isEmpty()
if option==5:
Display()
if option==6:
break
Plz keep going..i love python only becoz of u..very nice explanation🖒🖒👌
Thank you, I will :)
Brilliantly explained...up to the point...!!!! Thank you thank you...
Hi, Your videos have helped me a lot so just saying thank you for all the hard efforts you have put in your channel.
Happy to hear that! :)
@Raghav
hi Sis,these are really worth videos thanks a lot for sharing the content .
Guys who are reading the comment and really want to learn Data Strucures in Python,here is the Amulya Sis who always explained in a laymen terminology so that everyone understands.
And one small request guys, since this sister is doing this much for us,pls donot skip the adds,just watch fully ,pls donot skip, so that our sister will get the income. This is the least way we can help her.
Thanks SIS
Thanks , Amulya. Nice explanations! with real time applications!
You are welcome 😊
Mam we need programming(code) for python data structures along with theory
Edit:you are my life saver for python
Will upload soon :)
I think you are a student am I right?
I love your concept of small videos.
amazing, superb explanation
Very nice video specially in such easy to understand language ..only thing is if somehow u can share the presentation it would have really great to revise after watching each video..thanks for these videos..God bless you ❤️❤️❤️
Great Work Sis !!!!!!!!!!!!!!!
Will you start with Python course?Becoz ur explaination is damn good!!!
Please make videos on how to implement a Queue using 2 stacks.....and a stack using 2 Queues. ...and a stack using one queue .....etc in Python explaining each line of code
Day 1 finished :)
I just started learning DSA from your playlist, just wanted to know if it is still relevant? or we need to know some more new concept ?
Great content thank you :D
It helps for me thanks mam
Thank you so much!
Mam can you give excercise for our practice
Can i make Queue using list?
Yes :)
great
thx
Welcome :)
Pls teach the code also
Sure :)
ahh....where is implementation?