Thursday, 23 November 2023

Program(c):-Given a String S, reverse the string without reversing its individual words.

HAY THANK FOR VISIT

Given a String S, reverse the string without reversing its individual words. Words are separated by dots.

Example 1:

Input:
S = i.like.this.program.very.much
Output: much.very.program.this.like.i
Explanation: After reversing the whole
string(not individual words), the input
string becomes
much.very.program.this.like.i

Example 2:

Input:
S = pqr.mno
Output: mno.pqr
Explanation: After reversing the whole
string , the input string becomes
mno.pqr


Your Task:
You dont need to read input or print anything. Complete the function reverseWords() which takes string S as input parameter and returns a string containing the words in reversed order. Each word in the returning string should also be separated by '.' 


Expected Time Complexity: O(|S|)
Expected Auxiliary Space: O(|S|)


Constraints:
1 <= |S| <= 105

SOLUTION :-

//{ Driver Code Starts

import java.util.*;

import java.lang.*;

import java.io.*;

class GFG {

    public static void main(String[] args) {


        Scanner sc = new Scanner(System.in);

        int t = sc.nextInt();

        while (t > 0) {

            String s = sc.next();

            Solution obj = new Solution();

            System.out.println(obj.reverseWords(s));

            t--;

        }

    }

}


// } Driver Code Ends




class Solution 

{

    //Function to reverse words in a given string.

    String reverseWords(String S)

    {

        int l=S.length();

        

        String sa ="";

        String s1="";

        int p=0;

        for(int i=l-1;i>=0;i--)

        {

            if(S.charAt(i)!='.')

            {

                s1=S.charAt(i)+s1;

            }

            else

            {

             sa=sa+s1+".";

             s1="";

             p++;

            }

        }

        sa=sa+s1;

        return sa;

    }

}

No comments:

Post a Comment

HAY THAKYOU FOE VISIT

Program(python):-Find duplicates in an array (Geeks for geek problem)

QUESTION:- Given an array  a  of size  N  which contains elements from  0  to  N-1 , you need to find all the elements occurring more than o...