search
HomeBackend DevelopmentC++Modify the sentence by reversing the order in which all palindromic words appear

Modify the sentence by reversing the order in which all palindromic words appear

Problem Statement

We are given a string str, containing a total of N words. We need to find all palindrome words in a given string and create a new string by reversing the order of all palindrome words.

Example

enter

str = ‘nayan was gone to navjivan eye hospital’

Output

‘eye was gone to navjivan nayan hospital’

illustrate

The string contains three palindromes: nayan, navjivan and eye. We reversed the order of all three words and kept all other words the same.

enter

‘Hello, users! How are you?’

Output

‘Hello, users! How are you?’

illustrate

It gives the same output since the string does not contain any palindrome words.

enter

‘Your eye is beautiful.’

Output

‘Your eye is beautiful.’

illustrate

It gives the same output as a string containing only a single palindrome word.

method 1

In this method, we first split the string into words. After that, we will filter all palindrome words. Next, we reverse the order of all palindromes.

Finally, we iterate through the string and if the current word is a palindrome word, we replace it with another palindrome word in reverse order.

algorithm

  • Step 1 - Execute the reversePlaindromic() function by passing a string as argument that returns the result string.

  • Step 2 - Create isPalindrome() function to check if a word is a palindrome.

  • Step 2.1 - Initialize "start" to 0 and "end" to string length – 1.

  • Step 2.2 - Use a while loop to iterate through the string, comparing the first and last characters, comparing the second and penultimate characters, and so on. If any characters do not match, false is returned because it is not a palindrome string.

  • Step 2.3 - Returns true if the string is a palindrome.

  • Step 3 - Create a vector to store the words of the string. Additionally, define the "temp" variable to store the word.

  • Step 4 - Use a for loop to iterate over the string and append the character to the temporary value if it is not equal to a space (‘ ’). Otherwise, push the value of temp to the allWords vector.

  • Step 5 - Iterate over the allWords vector and check if the current word is a palindrome using the isPalindrome() function. If so, push the word into the "palindromWords" vector.

  • Step 6 - Invert the "palindromWords" list.

  • Step 7 - Now, iterate over the "allWords" vector again and check if the current word is a palindrome. If so, replace it with a respected word from the "palindromWords" list.

  • Step 8 - Iterate over the "palindromWords" list and create a string by appending all words to the result variable. Returns the result string.

Example

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
// Function to check if a string is a palindrome
bool isPalindrome(string str){
   int start = 0;
   int end = str.length() - 1;
   // iterate till start < end
   while (start < end){
      // check if the character at the start and end are not the same and return false, else increment start and decrement end
      if (str[start] != str[end]){
         return false;
      } else {
         start++;
         end--;
      }
   }
   return true;
}
string reversePalindromic(string str) {
   // vectors to store all words and palindromic words
   vector<string> palindromWords;
   vector<string> allWords;
   // variable to store single word
   string temp = "";
   for (char x : str) {
      // If the current character is not space, then append it to temp; else, add temp to palindrome words and make temp NULL
      if (x != ' ') {
         temp += x;
      } else {
         allWords.push_back(temp);
         temp = "";
      }
   }
   // push the last word to all words
   allWords.push_back(temp);
   // fetch all palindromic words
   for (string x : allWords){
      if (isPalindrome(x)){
         // Update newlist
         palindromWords.push_back(x);
      }
   }
   // Reverse the vector
   reverse(palindromWords.begin(), palindromWords.end());
   int k = 0;
   for (int i = 0; i < allWords.size(); i++){
      // If the current word is a palindrome, push it to palindrome words
      if (isPalindrome(allWords[i])){
         allWords[i] = palindromWords[k];
         k++;
      }
   }
   string result = "";
   for (string x : allWords) {
      result += x;
      result += " ";
   }
   return result;
}
int main(){
   string str = "nayan was gone to navjivan eye hospital";
   string reverse = reversePalindromic(str);
   cout << reverse << endl;
   return 0;
}

Output

eye was gone to navjivan nayan hospital
  • Time Complexity - O(N) since we iterate over strings of length N.

  • Space Complexity - O(K) because we use a list to store words, where k is the total number of words in the string.

in conclusion

We learned to take all the palindrome words from the sentence and add them in reverse order. In the above code, the programmer can try changing the implementation of the isPalindrome() function to learn something new.

The above is the detailed content of Modify the sentence by reversing the order in which all palindromic words appear. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:tutorialspoint. If there is any infringement, please contact admin@php.cn delete
如何更改Windows 11的PIN码如何更改Windows 11的PIN码Dec 23, 2023 pm 04:15 PM

有些朋友设置了pin码,但是由于不好记或者不方便等原因,想要修改,但是不知道win11怎么修改pin码,其实我们只需要进入账户设置的登录选项就可以了。win11怎么修改pin码:第一步,右键底部开始菜单。第二步,打开其中的“设置”第三步,点击左边的“账户”选项。第四步,打开右侧列表的“登录选项”第五步,点击pin右侧“小箭头”展开。第六步,点击下方“更改pin”第七步,在其中输入原pin码,再输入新pin码。输入完成点击“确定”即可完成修改。如果你之前没有pin码,也可以在这个位置新建pin码。

win11电源模式修改位置和方法win11电源模式修改位置和方法Dec 30, 2023 pm 05:25 PM

我们在win11系统中,可以通过修改电源模式的方法,来降低我们的电池消耗,或是提高我们的系统性能。设置方法非常简单,只要找到电源选项就可以了,下面就跟着小编一起来看一下具体的操作过程吧。win11在哪里修改电源模式1、首先点击任务栏最左边的按钮,打开开始菜单。2、然后在开始菜单上方搜索并打开“控制面板”3、在控制面板中,可以找到“硬件和声音”4、进入硬件和声音,点击电源选项下的“选择电源计划”5、然后在其中就可以修改电源模式了,可以选择平衡、节能模式或者展开隐藏附加计划,选择高性能模式。

win10修改电脑开机密码的简单方法win10修改电脑开机密码的简单方法Jul 16, 2023 pm 05:33 PM

修改电脑开机密码的简单方法是什么?给win10电脑设置一个开机密码可以很好的保护资料隐私安全。不过,有些时候我们处于安全性考虑会设置比较复杂再者是简单的密码,但是想要更改电脑密码,却不知win10怎么修改电脑开机密码,其实电脑开机密码修改方法还是很简单的,下面我们就来看看修改电脑开机密码。win10修改电脑开机密码的简单方法如下:方法一1、进入电脑“搜索”功能搜索“账户”,打开“管理你的账户”。2、在出现的账户界面,左边列表栏找到“登陆选项”,点击选择。3、找到密码,选择点击更改的按钮。4、输入

修改win11窗口边角为圆角的指南修改win11窗口边角为圆角的指南Dec 31, 2023 pm 08:35 PM

很多朋友更新好win11系统后,发现win11的界面窗口采用了全新的圆角设计。但是一些人觉得不喜欢这个圆角设计,想要将它修改为曾经的界面,但是却不知道怎么修改,下面就一起来看看吧。win11怎么修改圆角1、win11的圆角设计时内置的系统设置,目前无法修改。2、所以大家如果不喜欢使用win11的圆角设计的话,可以等待微软提供修改的方法。3、如果实在使用起来不习惯,还可以选择退回曾经的win10系统。4、如果大家不知道如何回退的话,可以查看本站提供的教程。5、要是使用上方教程无法进行回退的话,还可

修改WordPress中的特色图像大小修改WordPress中的特色图像大小Sep 15, 2023 pm 03:13 PM

特色图片是您可以添加到博客文章中的最重要的图片之一。特色图片之所以如此重要,是因为它在WordPress中的使用方式。当人们偶然发现在社交媒体上分享的您网站的链接时,他们首先看到的就是特色图片和帖子标题。这意味着您的特色图片会影响人们是否会从社交媒体点击查看您的帖子。这些图像还可以提供另一个重要功能,具体取决于您在网站上安装的主题。它们可以显示在您网站上链接到文章的所有位置。例如,假设您有一个侧边栏,显示阅读量最高的五篇文章。您将能够在侧边栏中显示您的帖子标题以及相应的特色图片。这可以使网站在视

win7系统如何修改开机等待时间win7系统如何修改开机等待时间Jul 08, 2023 pm 06:49 PM

当我们使用win7系统时,在开机过程中,可能要等很长时间才进入系统,每一次启动都要浪费大量时间,如不希望每次开机都要等很长时间,可以修改开机等待时间,下面小编为大家介绍win7修改开机等待时间的方法。win7系统如何修改开机等待时间:1.点击win7系统桌面左下角的开始菜单,在菜单中选择“电脑”右键,然后选择“属性”选项;2.然后在计算机属性面板中,选择面板左边的“高级系统设置”项目;3.然后在系统属性弹出窗口中,切换到Advanced选项卡,在启动和故障恢复部分,点击Settings按钮;4.

如何修改Edge浏览器的缓存位置如何修改Edge浏览器的缓存位置Dec 29, 2023 pm 06:01 PM

edge浏览器和一般的浏览器不同,不能简单的修改缓存位置而给很多小伙伴带来了烦恼,今天就为各位带来了edge浏览器缓存位置修改方法,一起看看吧。edge浏览器缓存位置怎么改:1、进入edge浏览器的路径位置,删除“Cache”缓存文件夹。2、右击开始,选择“命令提示符(管理员)”。3、输入命令:mklink/D"C:\Users\用户名\AppData\Local\Packages\Microsoft.MicrosoftEdge_8\AC\#!001\MicrosoftEdge\Cache""S

win10修改系统时间的步骤教程win10修改系统时间的步骤教程Jul 10, 2023 pm 06:49 PM

相信大家都知道,当电脑时间出现不准确的时候,我们是可以自行通过电脑右下角的时间区域进行调整的。不过还是有的朋友刚接触电脑,不知道如何操作,下面我们来看看win10修改系统时间的步骤教程,大家快来看看吧。1、回到桌面,右键单击右下角的时间,出现菜单,点击调整日期和时间,如下图所示2、进入日期和时间调整界面,将自动设置开关关闭,如下图所示3、关闭自动设置后点击更改日期和时间下面的更改按钮,如下图所示4、进入调整界面,点击小时和分后面的箭头,如下图所示5、出现小时和分钟拨轮,调整时间,如下图所示以上就

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)