Program for Reversed String Pattern Last Updated : 15 Sep, 2022 Comments Improve Suggest changes Like Article Like Report Given string str as the input. The task is to print the pattern as shown in the example. Examples: Input : str = "geeks" Output : g e e * s k Explanation : In the first line, print the first character in the string. In the second line, print the next two characters in reverse order. In the third line there are not enough characters to print, so append *s and print the characters in reverse order. Input: str = "orange" Output: o a r e g n Approach: Initialize an empty list and a variable x with the value 1.Traverse through the input string str and append the characters to the list.If the length of the list is equal to the value of x then Print the characters in the list in reverse order.Increment the value of x by 1.Empty the listIf the length of the last printed character is not 0 and it is less than the value of x then append x-length(x) *s and print it in reverse order. Implementation: C++ #include<bits/stdc++.h> using namespace std; // method declared to print the pattern of // the string passed as argument void reverseString(string str) { // a temporary string to store the // value of each row of pattern string r = ""; int x = 1; for (int i = 0 ; i < str.length(); i++) { // extracting each character and // adding it to the string r r = r + str[i]; if (r.length() == x) { // loop to print the string r in reverse order for(int j = r.length() - 1; j >= 0; j--) cout<<r.at(j) << " "; x += 1; r = ""; cout<<endl; } } // condition checking to add the "*" if required if (r.length() < x && r.length() != 0) { // adding the number of "*" required in r for(int k = 1; k <= x - r.length(); k++) r = r + "*"; // printing r in reverse order for(int j = r.length() - 1; j >= 0; j--) cout << r.at(j) << " "; } } // Driver Code int main() { // sample string to check the code string str = "geeks"; // method calling reverseString(str); } // This code is contributed by Rajput-Ji Java class GFG { // method declared to print the pattern of // the string passed as argument public static void reverseString(String str) { // a temporary string to store the // value of each row of pattern String r = ""; int x = 1; for (int i = 0 ; i < str.length(); i++) { // extracting each character and // adding it to the string r r = r + str.charAt(i); if (r.length() == x) { // loop to print the string r in reverse order for(int j = r.length() - 1; j >= 0; j--) System.out.print(r.charAt(j) + " "); x += 1; r = ""; System.out.println(); } } // condition checking to add the "*" if required if (r.length() < x && r.length() != 0) { // adding the number of "*" required in r for(int k = 1; k <= x - r.length(); k++) r = r + "*"; // printing r in reverse order for(int j = r.length() - 1; j >= 0; j--) System.out.print(r.charAt(j) + " "); } } // Driver Code public static void main(String args[]) { // sample string to check the code String str = "geeks"; // method calling reverseString(str); } } // This code is contributed by Animesh_Gupta Python 3 # function to print the pattern def reverseString(str): # initialize an empty list r = [] # initialize the value of x as 1 x = 1 # traverse through all the characters of x for i in str: # append all the characters to the list r.append(i) # if the length of the list is x if len(r)== x: # print the list in reverse order print(*reversed(r)) # increment the value of x x+= 1 # empty the list r = [] # if the list is not empty # length of the list is less than x if len(r)<x and len(r)!= 0: # print x-len(r) *s and the reversed list print('* ' * (x-len(r)), *reversed(r)) # get the input string str = "geeks" # calling the function to print the pattern reverseString(str) C# using System; class GFG { // method declared to print the pattern of // the string passed as argument public static void reverseString(String str) { // a temporary string to store the // value of each row of pattern String r = ""; int x = 1; for (int i = 0 ; i < str.Length; i++) { // extracting each character and // adding it to the string r r = r + str[i]; if (r.Length == x) { // loop to print the string r in reverse order for(int j = r.Length - 1; j >= 0; j--) Console.Write(r[j] + " "); x += 1; r = ""; Console.WriteLine(); } } // condition checking to add the "*" if required if (r.Length < x && r.Length != 0) { // adding the number of "*" required in r for(int k = 1; k <= x - r.Length; k++) r = r + "*"; // printing r in reverse order for(int j = r.Length - 1; j >= 0; j--) Console.Write(r[j] + " "); } } // Driver Code public static void Main(String []args) { // sample string to check the code String str = "geeks"; // method calling reverseString(str); } } // This code is contributed by PrinciRaj1992 JavaScript <script> // method declared to print the pattern of // the string passed as argument function reverseString(str) { // a temporary string to store the // value of each row of pattern var r = ""; var x = 1; for (var i = 0 ; i < str.length; i++) { // extracting each character and // adding it to the string r r = r + str[i]; if (r.length == x) { // loop to print the string r in reverse order for(var j = r.length - 1; j >= 0; j--) document.write( r[j] + " "); x += 1; r = ""; document.write("<br>"); } } // condition checking to add the "*" if required if (r.length < x && r.length != 0) { // adding the number of "*" required in r for(var k = 1; k <= x - r.length; k++) r = r + "*"; // printing r in reverse order for(var j = r.length - 1; j >= 0; j--) document.write( r[j] + " "); } } // Driver Code // sample string to check the code var str = "geeks"; // method calling reverseString(str); </script> Outputg e e * s k Complexity Analysis: Time Complexity: O(N), where n is the length of the given stringAuxiliary Space: O(N) Comment More infoAdvertise with us Next Article Program for Reversed String Pattern S SanjayR Follow Improve Article Tags : Strings Technical Scripter Python Python Programs DSA +1 More Practice Tags : pythonStrings Similar Reads Python Program to Reverse a Number We are given a number and our task is to reverse its digits. For example, if the input is 12345 then the output should be 54321. In this article, we will explore various techniques for reversing a number in Python. Using String SlicingIn this example, the Python code reverses a given number by conve 3 min read Reverse Alternate Characters in a String - Python Reversing alternate characters in a string involves rearranging the characters so that every second character is reversed while maintaining the original order of other characters. For example, given the string 'abcde', reversing the alternate characters results in 'ebcda', where the first, third and 3 min read Python - Reverse Slicing of given string Reverse slicing in Python is a way to access string elements in reverse order using negative steps.Using Slicing ([::-1])Using slicing with [::-1] in Python, we can reverse a string or list. This technique works by specifying a step of -1, which starts at the end of the sequence and moves backward, 1 min read Python Program to reverses alternate strings and then concatenates all elements Given a String List of length N, the following program returns a concatenated list of all its string elements with its alternate elements reversed. Input: test_str = 'geeksgeeks best for geeks' Output: skeegskeeg best rof geeks Explanation: Alternate words reversed. Input: test_str = 'geeksgeeks bes 6 min read Python - Reverse a words in a line and keep the special characters untouched Reverse the characters in all words in a line including numbers, but leave special characters and symbols untouched in the same position. Consider the below examples. Input: 'Bangalore is@#$!123 locked again in jul2020' should change to Output: 'erolagnaB si@#$!321 dekcol niaga ni 0202luj' Input: 'B 3 min read Like