Table of Contents
algorithm
Example
Output
in conclusion
Home Backend Development C++ Reverse words using O(1) extra space

Reverse words using O(1) extra space

Sep 16, 2023 pm 01:33 PM
reverse word o()

Reverse words using O(1) extra space

A string may consist of multiple words. Each word in a C string can contain letters, numbers, or special symbols. Strings are considered storage elements for these characters. Each word is separated by a space character. Each word also forms a string of one character. In C, the reverse of any string is a string that follows −

  • It is formed by taking characters from the end to the beginning.

  • The length of the original string remains unchanged.

The order in which the

characters appear in a string can be easily reversed by swapping the characters at the beginning and end of the word.

Constant auxiliary space is represented by O(1), which means that the program does not require additional space during execution.

Some examples to illustrate the problem are as follows:

ExampleExample

Example 1 - str:Abc def

Output: cbA fed

Explanation: When reversing a string, the condition of the characters remains unchanged.

Example 2 - str: Hi spe2

Output: yeH 23%eps

The problem statement can be solved by extracting each word and maintaining a pair of start and end pointers for each word and then inverting it.

algorithm

  • Step 1−Use a for loop to traverse the provided input string.

  • Step 2 - Use variable st to capture the starting character of the first word.

  • Step 3 − Once the first space is encountered, the lst variable is fixed on the previous character to mark the starting and ending characters of the word.

  • Step 4 − Using these two pointers and a while loop, reverse the characters of the word. On each iteration of the while loop, the pointer is moved to exhaust the string.

  • Step 5 − The values ​​are updated to shift the pointers to the next subsequent word and so on. st is reinitialised to the next character after space.

  • Step 6 - The entire string is iterated and the corresponding words are reversed.

Example

The following C code snippet takes a string as input and reverses the words contained in it -

// including the required libraries
#include <bits/stdc++.h>
using namespace std;

//reversing current word of string
void reverseWord(string &st, int s, int e){
   while (s < e) {
      swap(st[s], st[e]);
      s++;
      e--;
   }
}

//reverse the words of a string
string reverseString(string str){
   int len = str.length();

   //initialising the pointer with the first letter of the input string
   int st = 0;
   for (int i = 0; i <= len; i++) {

      //stop the pointer at the first word
      //either a space will be found indicating end of word or the string is finished
      char ch = str[i];
      if (ch == ' ' || i == len) {

         //fetching the last character of the current word of the string
         int lst = i - 1;

         // Reverse the current word
         reverseWord(str, st,lst);

         //since the ith character is string , go to i+1 th character to fetch next word
         st = i + 1;
      }
   }
   return str;
}

//calling the method to reverse words
int main(){

   //input string
   string str = "Reverse words Tutorials Point";
   cout<<"original String:"<<str;

   //reversed string
   string revstr = reverseString(str);
   cout << "\nReversed string : "<< revstr;
   return 0;
}
Copy after login

Output

original String:Reverse words Tutorials Point
Reversed string : esreveR sdrow slairotuT tnioP
Copy after login

Space complexity

The space required by the above method is constant because there is no new initialization of any type of variables. No external space storage is required to swap words. All modifications are made in available storage variables.

in conclusion

Strings are composed of characters that can be arranged in any order or reversed by simple iteration. Since the algorithm performs a single iteration for the entire range of characters stored in it, the total time required is O(n), where n is the length of the string.

The above is the detailed content of Reverse words using O(1) extra space. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to use Microsoft Reader Coach with Immersive Reader How to use Microsoft Reader Coach with Immersive Reader Mar 09, 2024 am 09:34 AM

In this article, we will show you how to use Microsoft Reading Coach in Immersive Reader on Windows PC. Reading guidance features help students or individuals practice reading and develop their literacy skills. You start by reading a passage or a document in a supported application, and based on this, your reading report is generated by the Reading Coach tool. The reading report shows your reading accuracy, the time it took you to read, the number of words correct per minute, and the words you found most challenging while reading. You will also be able to practice the words, which will help develop your reading skills in general. Currently, only Office or Microsoft365 (including OneNote for Web and Word for We

How can I start memorizing words again when I'm memorizing them ink? Share the method of memorizing words and re-memorizing words in Mo Mo! How can I start memorizing words again when I'm memorizing them ink? Share the method of memorizing words and re-memorizing words in Mo Mo! Mar 15, 2024 pm 03:28 PM

Are you curious about how to start memorizing words again when Mo Mo memorizes them? Mo Mo Bei Vocabulary is a very easy-to-use English word learning software. Users can choose an English vocabulary library for English learning based on their English level and learning intentions. They can also use examples, mnemonics and other methods to better understand and memorize words. Some friends have finished memorizing vocabulary and want to start memorizing the same vocabulary book again, but don't know how to do it? Today, the editor has sorted out the methods for memorizing words and re-memorizing words for you all! Come and download it if it helps you! 1. How can I start memorizing words again? Share the method of memorizing words and re-memorizing words in Mo Mo! 1. Open the Mo Mo Bei Vocabulary app, see the check-in function on the review page, and select the date of the day. 2. Click to enter and you will see the option to view details. 3. After jumping to the page, select

Where are the words that were chopped off in Hundred Words Chop? Word search tutorial that can be used to eliminate hundreds of words! Where are the words that were chopped off in Hundred Words Chop? Word search tutorial that can be used to eliminate hundreds of words! Mar 15, 2024 pm 03:52 PM

1. Where are the words that have been removed from the Hundred Words Cut? Word search tutorial that can be used to eliminate hundreds of words! 1. Go to the home page and click on the word list. 2. After jumping to the page, select the chopped word option. 3. After entering the interface, you can see the words that have been chopped off by the user. 4. If you want to restore the chopped word, click the Edit option. 5. Find the word that needs to be restored and click the cut icon on the right to restore the word. 6. Return to the learned word interface and you can see the words you just recovered.

How to reverse and reverse order a PHP array How to reverse and reverse order a PHP array Sep 05, 2023 am 08:28 AM

How to reverse and reverse a PHP array In PHP, an array is a commonly used data structure capable of storing and manipulating large amounts of data. Sometimes we need to reverse or reverse the array to meet specific needs. This article will introduce how to use PHP to reverse and reverse an array, and give corresponding code examples. 1. Reversing an array Reversing an array means rearranging the elements in the array in reverse order according to their original order. PHP provides a variety of methods to reverse arrays. Here are two commonly used methods:

How to enable or disable automatic correction of misspelled words on Windows 11 How to enable or disable automatic correction of misspelled words on Windows 11 Sep 19, 2023 pm 10:53 PM

Autocorrect is a very useful feature that can save a lot of time in your daily life. While it's not perfect, most of the time, you can rely on it to fix your spelling mistakes and writing errors. However, sometimes it doesn't work properly. You'll find that it doesn't recognize some words, which makes it difficult to work efficiently. Other times, you just want to disable it and go back to the old ways. But are there any benefits to using AutoCorrect? Save you time by correcting spelling errors. Helps you learn new words by showing the correct spelling. It helps you avoid embarrassing mistakes in emails and other documents. You'll be able to type faster and make fewer mistakes. How to turn spell check on or off on Windows 11? 1. Tap the key using the Settings app

How to reverse array key value order using array_reverse function in PHP How to reverse array key value order using array_reverse function in PHP Jun 26, 2023 pm 01:35 PM

In PHP programming, array is a very commonly used data structure. Through the form of key-value pairs, we can easily access and process data. However, in some cases, we need to reverse the order of the array keys to achieve better data processing results. PHP provides a specialized function, the array_reverse function, which can easily reverse an array. Next, this article will introduce readers to how to use the array_reverse function in PHP to reverse the order of array key values. one

Calculate the length of words in a string using Python Calculate the length of words in a string using Python Sep 13, 2023 am 11:29 AM

Finding the length of individual words in a given input string using Python is a problem that must be solved. We want to count the number of characters of each word in a text input and display the results in a structured style such as a list. The task requires breaking up the input string and separating each word. Then calculate the length of each word based on the number of characters in it. The basic goal is to create a function or procedure that can efficiently receive input, determine word length, and output results in a timely manner. Addressing this issue is critical in a variety of applications, including text processing, natural language processing, and data analysis, where word length statistics can provide insightful information and enable additional analysis. Methods used Use loops and split() function Use map() function with len and split() Use

Translation: For M queries, reverse the range of the given string Translation: For M queries, reverse the range of the given string Aug 25, 2023 pm 08:09 PM

Inthisproblem,wewillperformMreversequeriesonthegivenstringaccordingtothearrayvalues.Thenaïveapproachtosolvingtheproblemistoreverseeachstringsegmentaccordingtothegivenarrayvalue.Theoptimizedapproachusesthelogicthatwhenwereversethesamesubstringtwotimes

See all articles