Introduction To Queue | Data Structure | Python Tutorials

แชร์
ฝัง
  • เผยแพร่เมื่อ 11 ม.ค. 2025

ความคิดเห็น • 40

  • @HomeLander-hu1mt
    @HomeLander-hu1mt 10 หลายเดือนก่อน +2

    your content is better than most of the paid courses

  • @XpressCheck
    @XpressCheck ปีที่แล้ว +2

    I loved the accent. More than that I loved how short and precise the content is.

  • @meghanathreddy875
    @meghanathreddy875 4 ปีที่แล้ว +12

    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

  • @swarnabhkashyap5764
    @swarnabhkashyap5764 2 ปีที่แล้ว +1

    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]

  • @selvanm2872
    @selvanm2872 4 ปีที่แล้ว +1

    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

  • @ujjawalingle5494
    @ujjawalingle5494 4 ปีที่แล้ว +3

    Maam u teaches wonderfully.... Please make videos on backtracking problems...and about all the concept and topics of data structure

  • @learnwithstranger575
    @learnwithstranger575 4 ปีที่แล้ว +5

    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

  • @ankitjain7083
    @ankitjain7083 4 ปีที่แล้ว +1

    Plz keep going..i love python only becoz of u..very nice explanation🖒🖒👌

  • @shubhambandekar16
    @shubhambandekar16 3 ปีที่แล้ว

    Brilliantly explained...up to the point...!!!! Thank you thank you...

  • @Cryptopunq
    @Cryptopunq 4 ปีที่แล้ว +3

    Hi, Your videos have helped me a lot so just saying thank you for all the hard efforts you have put in your channel.

    • @AmulsAcademy
      @AmulsAcademy  4 ปีที่แล้ว

      Happy to hear that! :)

    • @meghanathreddy875
      @meghanathreddy875 4 ปีที่แล้ว

      @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

  • @satyajitdas2780
    @satyajitdas2780 4 ปีที่แล้ว +1

    Thanks , Amulya. Nice explanations! with real time applications!

  • @Aulin001
    @Aulin001 4 ปีที่แล้ว +1

    Mam we need programming(code) for python data structures along with theory
    Edit:you are my life saver for python

  • @piyushbagani9244
    @piyushbagani9244 4 ปีที่แล้ว +2

    I think you are a student am I right?
    I love your concept of small videos.

  • @maruthiprasad8184
    @maruthiprasad8184 2 ปีที่แล้ว

    amazing, superb explanation

  • @aksharpatel5288
    @aksharpatel5288 2 ปีที่แล้ว

    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 ❤️❤️❤️

  • @varishashahzad7301
    @varishashahzad7301 3 ปีที่แล้ว

    Great Work Sis !!!!!!!!!!!!!!!

  • @darshangovindraj7569
    @darshangovindraj7569 3 ปีที่แล้ว

    Will you start with Python course?Becoz ur explaination is damn good!!!

  • @nandinirm2234
    @nandinirm2234 2 ปีที่แล้ว

    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

  • @amazingtamilmystery1196
    @amazingtamilmystery1196 3 ปีที่แล้ว

    Day 1 finished :)

  • @ankitsharma-t9u7t
    @ankitsharma-t9u7t ปีที่แล้ว

    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 ?

  • @hermanpieters2325
    @hermanpieters2325 3 ปีที่แล้ว

    Great content thank you :D

  • @Jitendrachouhan1999
    @Jitendrachouhan1999 2 ปีที่แล้ว

    It helps for me thanks mam

  • @rohitkamble8515
    @rohitkamble8515 2 ปีที่แล้ว

    Thank you so much!

  • @sikandarkumar7563
    @sikandarkumar7563 4 ปีที่แล้ว

    Mam can you give excercise for our practice

  • @learnwithstranger575
    @learnwithstranger575 4 ปีที่แล้ว +1

    Can i make Queue using list?

  • @LagoonLofi
    @LagoonLofi 3 ปีที่แล้ว

    great

  • @philtoa334
    @philtoa334 4 ปีที่แล้ว +1

    thx

  • @arunaagt8229
    @arunaagt8229 3 ปีที่แล้ว +1

    Pls teach the code also

  • @learnwithstranger575
    @learnwithstranger575 4 ปีที่แล้ว

    ahh....where is implementation?