对象已移动

可在此处找到该文档 Generate all possible strings formed by replacing letters with given respective symbols – New Self New Life
New Self New Life
No Result
View All Result
  • Home
  • Entertainment
  • Celebrity
  • Cinema
  • Music
  • Digital Lifestyle
  • Social Media
  • Softwares
  • Devices
  • Home
  • Entertainment
  • Celebrity
  • Cinema
  • Music
  • Digital Lifestyle
  • Social Media
  • Softwares
  • Devices
New Self New Life
No Result
View All Result
Home Softwares

Generate all possible strings formed by replacing letters with given respective symbols

by admin
4 years ago
in Softwares
Best Coding Practices For Rest API Design
Share on FacebookShare on Twitter


Given a string S consisting of N characters and an array M[] of pairs of characters such that any character M[i][0] may be changed with the character M[i][1] within the string S, the duty is to generate all of the doable strings shaped by changing some characters of the string with their respective symbols within the array M[].

Examples:

Enter: S = “aBc”, M = {‘a’ : ‘$’, ‘B’ : ‘#’, ‘c’ : ‘^’}
Output:
aBc
aB^
a#c
a#^
$Bc
$B^
$#c
$#^ 

Enter: S = “a”, M={‘a’ : ‘$’}
Output:
a
$

Strategy: The given downside may be solved by utilizing Backtracking to generate all doable strings by changing every character with the mapped character within the array M[]. Comply with the steps beneath to resolve the issue:

  • Retailer all of the pairs of the mapped characters within the array M[] in a map, say Map.
  • Outline a recursive perform say generateLetters(S, P), the place S is the modified string and P is the index of the present character:
    • Test for the bottom case i.e., if index P equals to the N then print the string S and return.
    • Don’t change the present character and recursively name for the perform, generateLetters(S, P + 1).
    • Now, change the character, S[P] with the respective image within the map M and name for the perform, generateLetters(S, P+1).
  • After finishing the above steps, name for the perform generateLetters(S, 0) to print all doable strings.

Under is the implementation of the above method:

C++

  

#embrace <bits/stdc++.h>

utilizing namespace std;

  

void generateLetters(string S, int P,

                     unordered_map<char, char> M)

{

    

    if (P == S.measurement()) {

        cout << S << "n";

        return;

    }

  

    

    

    generateLetters(S, P + 1, M);

  

    

    S[P] = M[S[P]];

  

    

    

    generateLetters(S, P + 1, M);

  

    return;

}

  

int foremost()

{

    string S = "aBc";

    unordered_map<char, char> M;

    M['a'] = '$';

    M['B'] = '#';

    M['c'] = '^';

    M['d'] = '&';

    M['1'] = '*';

    M['2'] = '!';

    M['E'] = '@';

  

    

    generateLetters(S, 0, M);

  

    return 0;

}

Output:


aBc
aB^
a#c
a#^
$Bc
$B^
$#c
$#^

Time Complexity: O(N*2N)
Auxiliary House: O(1)

Consideration reader! Don’t cease studying now. Pay money for all of the vital DSA ideas with the DSA Self Paced Course at a student-friendly value and change into business prepared.  To finish your preparation from studying a language to DS Algo and plenty of extra,  please refer Full Interview Preparation Course.

In case you want to attend dwell courses with specialists, please refer DSA Stay Lessons for Working Professionals and Aggressive Programming Stay for College students.



Source link

Tags: formedGeneratelettersreplacingrespectivestringssymbols
Previous Post

Space Jam 2 Tops Weekend Box Office With Surprise $32 Million

Next Post

DARKSIDE ‘Spiral’ album | Nicolás Jaar and Dave Harrington

Related Posts

User Guide For 360 Degree Product Image For Wix
Softwares

User Guide For 360 Degree Product Image For Wix

by admin
July 24, 2025
New open-source tool makes complex data understandable
Softwares

New open-source tool makes complex data understandable

by admin
July 25, 2025
BrowserStack launches Figma plugin for detecting accessibility issues in design phase
Softwares

BrowserStack launches Figma plugin for detecting accessibility issues in design phase

by admin
July 22, 2025
Developer beats AI in coding battle
Softwares

Developer beats AI in coding battle

by admin
July 21, 2025
React latest version – React 19 to bring the React Compiler & more
Softwares

React latest version – React 19 to bring the React Compiler & more

by admin
July 20, 2025
Next Post
DARKSIDE ‘Spiral’ album | Nicolás Jaar and Dave Harrington

DARKSIDE 'Spiral' album | Nicolás Jaar and Dave Harrington

Object.entries

Dark Mode in One Line of Code!

  • Trending
  • Comments
  • Latest
How to use Redis for Api Caching in CS-Cart

How to use Redis for Api Caching in CS-Cart

July 26, 2023
I Tried Calocurb For 90 Days. Here’s My Review.

I Tried Calocurb For 90 Days. Here’s My Review.

January 8, 2025
10 Best Netflix Original Thriller Shows, Ranked

10 Best Netflix Original Thriller Shows, Ranked

June 22, 2025
The US Government Issues New Directives on AI Development

The US Government Issues New Directives on AI Development

July 24, 2025
Nothing helped his eczema, so this S’porean invented his own fix

Nothing helped his eczema, so this S’porean invented his own fix

July 25, 2025
Do You Have a Side Hustle?

Do You Have a Side Hustle?

July 24, 2025
New open-source tool makes complex data understandable

New open-source tool makes complex data understandable

July 25, 2025
User Guide For 360 Degree Product Image For Wix

User Guide For 360 Degree Product Image For Wix

July 24, 2025
Morgan Wallen’s 2025 Success: Radio Programmers Weigh In

Morgan Wallen’s 2025 Success: Radio Programmers Weigh In

July 25, 2025
Brave and AdGuard now block Microsoft Recall by default

Brave and AdGuard now block Microsoft Recall by default

July 25, 2025
Happy Gilmore 2 Cast & All Cameos Listed

Happy Gilmore 2 Cast & All Cameos Listed

July 25, 2025
29 Actors Who Were Cast At The Very Last Second

29 Actors Who Were Cast At The Very Last Second

July 25, 2025
Nothing helped his eczema, so this S’porean invented his own fix

Nothing helped his eczema, so this S’porean invented his own fix

July 25, 2025
Us TikTok Ban To Be Upheld if a Deal Isn’t Finalized by Current Deadline

Us TikTok Ban To Be Upheld if a Deal Isn’t Finalized by Current Deadline

July 25, 2025
7 Arrested, Including Parents, in Shocking Case with 10 Children Locked Up, Sex-Trafficked for Years: Police

7 Arrested, Including Parents, in Shocking Case with 10 Children Locked Up, Sex-Trafficked for Years: Police

July 25, 2025
Do You Have a Side Hustle?

Do You Have a Side Hustle?

July 24, 2025
New Self New Life

Your source for entertainment news, celebrities, celebrity news, and Music, Cinema, Digital Lifestyle and Social Media and More !

Categories

  • Celebrity
  • Cinema
  • Devices
  • Digital Lifestyle
  • Entertainment
  • Music
  • Social Media
  • Softwares
  • Uncategorized

Recent Posts

  • Morgan Wallen’s 2025 Success: Radio Programmers Weigh In
  • Brave and AdGuard now block Microsoft Recall by default
  • Happy Gilmore 2 Cast & All Cameos Listed
  • Home
  • Disclaimer
  • DMCA
  • Privacy Policy
  • Cookie Privacy Policy
  • Terms and Conditions
  • Contact us

Copyright © 2021 New Self New Life.
New Self New Life is not responsible for the content of external sites. slotsfree  creator solana token

No Result
View All Result
  • Home
  • Entertainment
  • Celebrity
  • Cinema
  • Music
  • Digital Lifestyle
  • Social Media
  • Softwares
  • Devices

Copyright © 2021 New Self New Life.
New Self New Life is not responsible for the content of external sites.

New Self New Life