தமிழ் | what is recursion | how recursive functions work| recursive functions explained easily tamil

Поделиться
HTML-код
  • Опубликовано: 19 апр 2021
  • #recursion #recursivefunction #tamilprogramming
    in this video,learn about recursions in functions.
    understand the basic concept behind recursion easily.
    link to stack explanation video : • Stack explanation | wh...
    what is recursion in tamil, recursion in programming, understand how recursion works, recursive functions explained easily in tamil, recursive functions in java, recursive functions in python,python recursive functions,knapsack problem recursion, iteration vs recursion in tamil,recursion based interview problem for interviews tamil, zoho interview recursion questions, how to solve recursion problems in tamil,how recursive functions work, normal functions vs recursive functions in tamil,
    *******************************************************
    ❤ SUBSCRIBE : / @algotamizha
    😎FOLLOW ON INSTAGRAM : / algo_tamizha_yt
    *****************************************************
    THANKS FOR WATCHING :)

Комментарии • 11

  • @ranjithcasey5058
    @ranjithcasey5058 2 года назад +1

    thanks for explanation bro now im clearly understand

    • @AlgoTamizha
      @AlgoTamizha  2 года назад

      glad i was able to help. keep supporting🙌

  • @newgamer0087
    @newgamer0087 2 года назад +1

    Brother can you help us to understand the logic of the following code in Python(recursive function):
    def tri_recursion(k):
    if(k > 0):
    result = k + tri_recursion(k - 1)
    print(result)
    else:
    result = 0
    return result
    print("

    Recursion Example Results")
    tri_recursion(6)
    Output:
    Recursion Example Results
    1
    3
    6
    10
    15
    21
    When I try to understand the logic of this program and try to predict the output I don't get the output I get only the print line output as "Recursion Example Results", but when I compile and execute it, the output comes like which I given above.

    • @AlgoTamizha
      @AlgoTamizha  2 года назад +1

      hi bro, sure.this is a recursion to find sum upto n. here it is sum up to 6 which is 1+2+3+4+5+6 =21. at every step they are prininting the sum

    • @venkatraman_padmanaban
      @venkatraman_padmanaban 2 года назад +2

      Bro... Can you make a video to explain the flow of this problem... That would help me and friends a lot.

  • @akashdestiny9126
    @akashdestiny9126 3 года назад +1

    First like

  • @Sakthi-rf1ok
    @Sakthi-rf1ok 3 года назад +1

    Zoho advanced programming questions slove pannunga bro

    • @Sakthi-rf1ok
      @Sakthi-rf1ok 3 года назад +1

      Slove pantradhuku kastama irukku

    • @AlgoTamizha
      @AlgoTamizha  3 года назад +3

      @@Sakthi-rf1ok kandipa panren bro 🔥. keep watching and share my videos bro. thanks

  • @ArunBCS-fe5so
    @ArunBCS-fe5so Год назад

    Thala unga GitHub link share pannunga bro...