Lecture 56: Recursion in Strings

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

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

  • @RuchikaThombare
    @RuchikaThombare 10 หลายเดือนก่อน +7

    Bhaiya aap bohot acche padhate ho, muze recursion me confusion tha samajh nhi aata tha kuch bhi lekin aapse padhne ke bad doubts clr ho gaye. Thank you.

  • @nitishgupta4100
    @nitishgupta4100 หลายเดือนก่อน +2

    Done all the questions without even looking at the solution :)
    Thanks bhaiya 🤗

  • @study-yd6es
    @study-yd6es หลายเดือนก่อน +1

    Amazing Explaination Brother

  • @VineetDixit
    @VineetDixit 8 หลายเดือนก่อน +7

    shaandaar lecture keep doing it
    do bring a web development course that is extraordinary from all the other courses out thee on youtube as you are doing with your DSA course,
    your DSA course is exclusive in whole TH-cam

  • @CoderArmy9
    @CoderArmy9  11 หลายเดือนก่อน +26

    Good Morning Coder Army...❤

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

    bhaiya sab chamak gya .....you are the best 👍👍👍

  • @SiyaRamSiyaRam1008
    @SiyaRamSiyaRam1008 8 หลายเดือนก่อน +2

    Sab chamak Gaya bhaiya aapka bahut dhanyawad bhaiya 🙏

  • @shreyashsrivastava6970
    @shreyashsrivastava6970 5 หลายเดือนก่อน +3

    chamak raha ache se 🙌🙌🙌

  • @rahulsarafvlogs7275
    @rahulsarafvlogs7275 7 หลายเดือนก่อน +1

    bhaiya seriously bahut mza aa rha bahut aache se samjhaya hai aapne sab kuch, THankYOu so much😇

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

    It's a very important and helpful video

  • @patanwar
    @patanwar 5 หลายเดือนก่อน +1

    Clarity belongs to this Man ⚡

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

    Sir maine pehle bhi recursion padha tha but jo aapne smjaya hai lagta hai lifetime nahi bhulunga, i will start my internship from this January then i will share little amount of money to you , u r god gifted person sir ❤❤

  • @PradeepModak-w5h
    @PradeepModak-w5h 9 หลายเดือนก่อน +1

    chamak gya bahiya

  • @heetpatel3037
    @heetpatel3037 7 หลายเดือนก่อน

    Bohot ache se chamka bhaiya 👍🏻
    Crystal clear

  • @Manav00121
    @Manav00121 9 หลายเดือนก่อน +1

    Bhaiya bahuth suna tha or sab ne most difficult topic batya tha but it becomes easy for us because of you but but but a little bit difficult.
    Thanks @RohitNegi Bhaiya

  • @tarmadara-j6j
    @tarmadara-j6j 25 วันที่ผ่านมา

    for lowercase to uppercase
    def upr(string, index = 0):
    if index == len(string):
    return ""
    current_char = string[index]
    if 'a'

  • @CSEBivekKumarSahNirala
    @CSEBivekKumarSahNirala 10 หลายเดือนก่อน

    Bhaiya video xota tha lekin explanation bahut hi axa tha maja aagya bhaiya ❤❤❤

  • @kohinooryezindagi3245
    @kohinooryezindagi3245 11 หลายเดือนก่อน +5

    10q bhaiya for this video abhi kambal me hu
    2 hrd baad class krunga abhi notes lena padega kambal me se 😊❤❤❤

    • @CoderArmy9
      @CoderArmy9  11 หลายเดือนก่อน +5

      Ye sahi hai..

    • @kohinooryezindagi3245
      @kohinooryezindagi3245 11 หลายเดือนก่อน +4

      @@CoderArmy9 😁bhaiya aap hi ne to bola tha without notes claas mt kro, jindagi ka 3rd dream pura ho gya aapse reply pakar,
      Aapko sat sat pranam bhaiya 🙏🙏🙏

    • @rudeguy9024
      @rudeguy9024 10 หลายเดือนก่อน +1

      ​@@kohinooryezindagi32451st and 2nd dream kya tha?

  • @YashSaini007
    @YashSaini007 11 หลายเดือนก่อน +3

    Bhaiya Radhe Radhe 🙏

    • @CoderArmy9
      @CoderArmy9  11 หลายเดือนก่อน +2

      Radhe Radhe bhai

  • @paul9005
    @paul9005 5 หลายเดือนก่อน

    chamak gya sabb!!

  • @relaxingtime2411
    @relaxingtime2411 10 หลายเดือนก่อน +1

    Coder Army is OP.

  • @IndiLores709
    @IndiLores709 3 หลายเดือนก่อน +1

    Starting from start :
    # include
    using namespace std;
    int count(string S, int index){
    if (index == S.size())
    {
    return 0;
    }

    if (S[index] == 'a' || S[index] == 'e' ||S[index] == 'i' ||S[index] == 'o' || S[index] == 'u'||S[index] == 'A' || S[index] == 'E' ||S[index] == 'I' ||S[index] == 'O' || S[index] == 'U')
    {
    return 1 + count(S, index + 1);
    }
    else
    {
    return count(S, index + 1);
    }


    }
    int main() {
    // counting vowels
    string S;
    cout> S;
    cout

  • @harshdeepkumar3589
    @harshdeepkumar3589 10 หลายเดือนก่อน +1

    Chamak gaya❤

  • @tarmadara-j6j
    @tarmadara-j6j 25 วันที่ผ่านมา

    for python this would be the simplest and non slicing approach
    #REverse a String
    def rev(string, index=0):
    if index == len(string):
    return ""
    else:
    return rev(string, index+1) + string[index]
    string = "HELLO"
    result = rev(string)
    print(result)

  • @motivation_with_harsh
    @motivation_with_harsh 9 หลายเดือนก่อน

    chamak gaya bhaiya 😁😁😁

  • @shree_275
    @shree_275 6 หลายเดือนก่อน

    count vowels using two pointer :-
    #include
    using namespace std;
    void checkvow(string str, int index, int end, int count) {
    if (index == end) {
    cout

  • @BhimUpadhaya-c3w
    @BhimUpadhaya-c3w 6 หลายเดือนก่อน

    really loves alll of your vdo😍

  • @jasmeetsingh3170
    @jasmeetsingh3170 2 หลายเดือนก่อน

    Thankyou so much sir ji

  • @Anonymous_EngineerX
    @Anonymous_EngineerX หลายเดือนก่อน +1

    Amazing lecture
    bhaiya last me jo music chalta hai uska name?

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

    Recursion on String chamak gaya ✅✅✅✅

  • @Vivekkumarmishra01
    @Vivekkumarmishra01 10 หลายเดือนก่อน

    nice explanation bhaiya

  • @AkashKumawat-g6y
    @AkashKumawat-g6y 4 หลายเดือนก่อน

    Maja aa gaya❤❤

  • @ankushladani496
    @ankushladani496 10 หลายเดือนก่อน +1

    Thanks Bhaiya...❤🎉

  • @asad_iliyas
    @asad_iliyas 9 หลายเดือนก่อน +1

    28:40
    either we have to cout

    • @nidhikumari5219
      @nidhikumari5219 7 หลายเดือนก่อน

      23:41 why to put else condition?

  • @startercoder
    @startercoder 8 หลายเดือนก่อน

    chamak gya bhaiya

  • @amankumaramar271
    @amankumaramar271 10 หลายเดือนก่อน

    39:59
    //upper To Lower case
    #include
    using namespace std;
    void upperToLowerCase(string &str,int index)
    {
    if(index==-1)
    return;
    str[index]='a'+str[index]-'A';
    upperToLowerCase(str,index-1);
    }
    int main()
    {
    string str="AMANAMAR";
    upperToLowerCase(str,7);
    cout

  • @nownow1025
    @nownow1025 5 หลายเดือนก่อน

    way of printing string in reverse.
    #include
    using namespace std;
    char reversestring(string s,int index)
    {
    if(index==0)
    return s[index];
    cout

  • @nnnishantbhujwan
    @nnnishantbhujwan 10 หลายเดือนก่อน

    Good morning Bhai ji. ❤

  • @anupammishra6514
    @anupammishra6514 11 หลายเดือนก่อน

    Good morning bhaiya ❤

  • @Code_with_Tiwarijii
    @Code_with_Tiwarijii 11 หลายเดือนก่อน

    Good Morning Bhaiya🎉

  • @omkadam2986
    @omkadam2986 4 หลายเดือนก่อน

    Done 👍

  • @joydeep-halder
    @joydeep-halder 10 หลายเดือนก่อน +1

    HW: To Lowercase ✅✅
    void convert(string& str, int i){
    if(i==-1) return;
    if(str[i]

  • @hrithikdas2167
    @hrithikdas2167 10 หลายเดือนก่อน

    Reverse a string - #include
    using namespace std;
    void revString(string str , int n){
    if(n==0){
    return;
    }
    cout

  • @shree_275
    @shree_275 6 หลายเดือนก่อน

    use index value as in int main() :-
    str.length()

  • @Aryan-wl7mc
    @Aryan-wl7mc 11 หลายเดือนก่อน

    Good Morning bhaiya

  • @rishifishyy
    @rishifishyy 4 หลายเดือนก่อน

    bhaiya last question mai maine thoda different approach liya maine
    str[index]=str[index]-' space' ; kra I mean ascii value 32 substract kardi maine

  • @sakshinadankar3782
    @sakshinadankar3782 8 หลายเดือนก่อน

    Thank u😊

  • @mdpsycho2op670
    @mdpsycho2op670 11 หลายเดือนก่อน

    Mornnnnnnninnnnnggggggggggg Bhaiya😁❤️

  • @vansh-h4m6e
    @vansh-h4m6e 9 หลายเดือนก่อน

    // to reverse our string with help of string
    #include
    using namespace std;
    string reverse_string(string str,int start,int end){
    if(start

  • @GopalKumar-xu3iw
    @GopalKumar-xu3iw 10 หลายเดือนก่อน

    day 79/180 done

  • @dipakmali9817
    @dipakmali9817 9 หลายเดือนก่อน

    Day 79 ✅ Done

  • @itsash-18
    @itsash-18 4 หลายเดือนก่อน

    #include
    using namespace std;
    void s(string arr,int index,int c){
    if(index>=c){
    cout

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

    HW: Count consonants. ✅✅
    int countConsonants(string S, int i){
    if(S[i]=='\0') return 0;
    int isConsonant = !(S[i]=='a' || S[i]=='e' || S[i]=='i' || S[i]=='o' || S[i] == 'u');
    return isConsonant + countConsonants(S, i+1);
    }

    • @Pallab01
      @Pallab01 10 หลายเดือนก่อน +1

      bro logic a6a thaa🤍

    • @joydeep-halder
      @joydeep-halder 10 หลายเดือนก่อน +1

      @@Pallab01 Thanks bhai ❤❤

    • @nidhikumari5219
      @nidhikumari5219 7 หลายเดือนก่อน

      23:41 why to put else condition?

  • @5harshitshrivastava
    @5harshitshrivastava 7 หลายเดือนก่อน

    day 56 completed

  • @pratapkumar7249
    @pratapkumar7249 7 หลายเดือนก่อน

    aaj to easy tha

  • @mdpsycho2op670
    @mdpsycho2op670 10 หลายเดือนก่อน

    bhaiya leetcide k recusion wale ache questions krado pilissssssssss

  • @RohitCoder
    @RohitCoder 11 หลายเดือนก่อน

    Good morning ❤

  • @paras_.Rajput.._
    @paras_.Rajput.._ หลายเดือนก่อน

    🔥🔥

  • @priyanshudabral6588
    @priyanshudabral6588 11 หลายเดือนก่อน

    Good content ♥️♥️♥️♥️♥️♥️♥️♥️♥️

  • @YashKumar-nn9mc
    @YashKumar-nn9mc 3 หลายเดือนก่อน

    done

  • @VishalKrishnaBhatK-f1g
    @VishalKrishnaBhatK-f1g 10 หลายเดือนก่อน

    Bhaiya, is string header file already included in #include ??

    • @Undertaker1331
      @Undertaker1331 10 หลายเดือนก่อน

      No you have to use
      Include

  • @RahulGupta-wv7lv
    @RahulGupta-wv7lv 9 หลายเดือนก่อน

    chamk gaya sir ji

  • @itshirdeshk
    @itshirdeshk 10 หลายเดือนก่อน

    Day 79 ✅🔥

  • @kausiksikdar2054
    @kausiksikdar2054 10 หลายเดือนก่อน

    Done

  • @vansh-h4m6e
    @vansh-h4m6e 9 หลายเดือนก่อน

    // to convert lower case alphabet to upper case
    #include
    using namespace std;
    string convert(string str,int start){
    if(start

  • @prathmesh_Bidve
    @prathmesh_Bidve 10 หลายเดือนก่อน

    Mistake is pass by value

  • @mayankshakya9200
    @mayankshakya9200 10 หลายเดือนก่อน

    BHAIYA TREES KE QNS ACCHE SE KARANA SAB BANRAHA HAI PAR TREES NAHI BAN RAHE USKE RECURSIVE QNS

  • @zafrul_islam
    @zafrul_islam 11 หลายเดือนก่อน +1

    done✅✅

  • @vansh-h4m6e
    @vansh-h4m6e 9 หลายเดือนก่อน

    // to count no of vowel
    #include
    using namespace std;
    int check_vowel(string str,int size,int start){
    if(start==size){
    return 0;
    }
    else if(str[start]=='a'||str[start]=='e'||str[start]=='i'||str[start]=='o'||str[start]=='u'){
    return 1+check_vowel(str,size,start+1);
    }
    else{
    return check_vowel(str,size,start+1);
    }
    }
    int main(){
    string str="vansh sati";
    int size=str.length();
    int start=0;
    cout

  • @fire7874
    @fire7874 8 หลายเดือนก่อน

    ❤❤❤

  • @iamalcohishan106
    @iamalcohishan106 11 หลายเดือนก่อน

    G m bhiya

  • @deep_singh01
    @deep_singh01 10 หลายเดือนก่อน

    Day 79/180 👍👍

  • @vansh-h4m6e
    @vansh-h4m6e 9 หลายเดือนก่อน

    #include
    #include
    using namespace std;
    int ispalindrome(int start,int end,string str){
    if(start>end){
    return 1;
    }
    else if(str[start]!=str[end]){
    return 0;
    }
    else{
    return ispalindrome(start+1,end-1,str);
    }
    }
    int main(){
    cout

  • @prathmesh_Bidve
    @prathmesh_Bidve 10 หลายเดือนก่อน

    homework upper to lower
    void upperTolower(string &str,int index){
    if(index==-1)
    return ;
    str[index]='a'+str[index]-'A';
    upperTolower(str,index-1);
    }

  • @abhinayjangde
    @abhinayjangde 10 หลายเดือนก่อน

    29:12 rohit print hoga bhaiya

  • @nikhilrai6373
    @nikhilrai6373 2 หลายเดือนก่อน

    chamakgaya

  • @Dhiraj20014
    @Dhiraj20014 10 หลายเดือนก่อน

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

    20:55 You can still count with only two arguments. Check the below code.
    int checkVowel(string s, int index) {
    if (index == s.size())
    return 0;
    if (s[index] == 'a' || s[index] == 'e' || s[index] == 'i' || s[index] == 'o' || s[index] == 'u') {
    return 1 + checkVowel(s, index + 1);
    }
    return checkVowel(s, index + 1);
    }

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

    IR07120D

  • @NajmGameplay
    @NajmGameplay 11 หลายเดือนก่อน

    day 69

  • @nidhikumari5219
    @nidhikumari5219 7 หลายเดือนก่อน

    23:41 why to put else condition?

    • @patanwar
      @patanwar 5 หลายเดือนก่อน +1

      If is used for vowel is there
      Like agar vowel hai toh count 1 add krdo and search for other vowels too but
      else is like
      We didn't get the vowel so we directly switched to the (index -1)th element without adding 1 in it
      Hope it helps

  • @AbhishekKumar-lu3lp
    @AbhishekKumar-lu3lp 10 หลายเดือนก่อน

    bhaiya aaj se main aapki sheet solve karne ja rha hu but thoda confuse hu ki sheet ke notes banane ha ke nhi

    • @rudeguy9024
      @rudeguy9024 10 หลายเดือนก่อน

      Confusion kya isme..banao bindas notes

    • @AbhishekKumar-lu3lp
      @AbhishekKumar-lu3lp 10 หลายเดือนก่อน

      @@rudeguy9024 but 700 ques ke notes bht time lag jayega

  • @ritikkumar-dz8nj
    @ritikkumar-dz8nj 11 หลายเดือนก่อน

    Day 79

  • @YashSaini007
    @YashSaini007 11 หลายเดือนก่อน +1

    Day 79/180 #180DaysOfCode

  • @MovieMoods0001
    @MovieMoods0001 11 หลายเดือนก่อน

    namaste bhaiya

    • @CoderArmy9
      @CoderArmy9  11 หลายเดือนก่อน

      Namaste..

  • @vibhors
    @vibhors 11 หลายเดือนก่อน

    🎉

  • @DevanshGupta-io7rl
    @DevanshGupta-io7rl 10 หลายเดือนก่อน

    mistake :- reference pass krma hai kya ?

  • @Pallab01
    @Pallab01 10 หลายเดือนก่อน

    ❤‍🔥

  • @averagecoder7
    @averagecoder7 10 หลายเดือนก่อน

    Day 79 ✅🫡

  • @akshayshukla5389
    @akshayshukla5389 9 หลายเดือนก่อน

    CHAMKAAAA

  • @gladiatorxf7871
    @gladiatorxf7871 4 หลายเดือนก่อน

    chamka

  • @thetechno2202
    @thetechno2202 5 หลายเดือนก่อน

    chamak gaya bhaiya

  • @shubhamkumarjha9192
    @shubhamkumarjha9192 11 หลายเดือนก่อน

    Good morning bhaiya ji ❤

  • @joydeep-halder
    @joydeep-halder 11 หลายเดือนก่อน

    Good morning bhaiya ❤❤

  • @DesiMrBean7
    @DesiMrBean7 10 หลายเดือนก่อน

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

    chamak gya bhaiya

  • @AakashParvani
    @AakashParvani 11 หลายเดือนก่อน

    Good morning bhaiya ❤