Insertion Sort - Sorting Algorithm - Python - Data Structures & Algorithms - Tamil

แชร์
ฝัง
  • เผยแพร่เมื่อ 18 ธ.ค. 2024

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

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

    nalla detail ah ithe maari video podunga, romba nandri I was searching for a tamil channel like this you know..

    • @codemeal
      @codemeal  ปีที่แล้ว

      Thanks bro ✨️

  • @ScatterShashank
    @ScatterShashank 5 วันที่ผ่านมา

    Super bro super irukku vodeo I liked it very much keep on this work and soon you will the first miles stone that is 100k subs son all the best bro

  • @noone-fp3ft
    @noone-fp3ft 10 หลายเดือนก่อน

    Thalaivaree Rombaa Nandrii Thalaivareyyyyyy , Lub U Vro

  • @rocklinks
    @rocklinks ปีที่แล้ว +6

    Thanks bro i dont know about your channel but google bard recommended your channel
    Complete Python DSA Video podunga bro youtube la full ah tamil video illai

  • @Lonewolf-h2e
    @Lonewolf-h2e 4 หลายเดือนก่อน +3

    guys who don't understand the above code use this
    arr = [7,1,4,5,3,2]
    for i in range(1, len(arr)):
    curr = arr[i]
    for j in range(i, 0, -1):
    if arr[j - 1] > curr:
    arr[j] = arr[j - 1]
    else:
    arr[j] = curr
    break
    else:
    arr[0] = curr
    print(arr)

    • @mrwildmouth5876
      @mrwildmouth5876 3 หลายเดือนก่อน

      Error:
      Why are you using 2 else in this code
      Can u explain please

  • @SherlockHolmes-rt5ep
    @SherlockHolmes-rt5ep 6 หลายเดือนก่อน

    Hey super nanba :)

  • @JoffrinReffino-s6e
    @JoffrinReffino-s6e 3 หลายเดือนก่อน

    def insertion_sort(arr):
    for i in range (1 , len(arr)):
    while arr[i-1] > arr[i] and i >0 :
    arr[i-1] , arr[i] = arr[i] , arr[i-1]
    i = i -1
    return arr

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

    Hi ...thanks for the content.i have been searching data structures with python but not satisfied. neenga clear ah explain pannuringa thanks

  • @melwindaniel9613
    @melwindaniel9613 11 วันที่ผ่านมา

    Thanks boss

  • @30-rathnakumart60
    @30-rathnakumart60 4 หลายเดือนก่อน +4

    Comments laam paatha enaku mattum thaan purila pola🙃.....konjam slow ah sollunga bro

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

    Bro
    Nenga romba clear ah soli kudukuringa
    It's be perfect
    Thank you
    And I messaged u in Instagram regarding some doubts
    Please consider that
    And the telegram link is not applicable
    Please recheck

    • @codemeal
      @codemeal  ปีที่แล้ว

      Sure check pandren. Thank you so much

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

    Queue concept cover pannuga bro

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

      Sure bro next athan

  • @Surendran.sBscIT
    @Surendran.sBscIT 7 หลายเดือนก่อน

    Bro entha company bro neega

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

    Bro quick sort merge sort podunga

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

      Hi, sorry laptop service ku kuduthiruken 10 days aahum, athuku apram videos continuous ah podren,, Really Sorry

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

    Thala va thala va thala

    • @codemeal
      @codemeal  ปีที่แล้ว

      😂🤩❤️

  • @rk.sparkles7212
    @rk.sparkles7212 4 หลายเดือนก่อน

    we can also do like this la !!!
    #insertion sort
    x=[7,1,5,3,0,4,2,6,-1]
    for i in range(1,len(x)):
    for j in range(i-1,-1,-1):
    if x[j]>x[i]:
    x[i],x[j]=x[j],x[i]
    i-=1
    print(x)

    • @ajinnija8697
      @ajinnija8697 3 หลายเดือนก่อน

      I think this is bubble sort