Table of Contents
Problem Statement
Example
enter
Output
Explanation
method one
algorithm
Method 2
in conclusion
Home Backend Development C++ Make a string non-palindrome by inserting the given characters

Make a string non-palindrome by inserting the given characters

Sep 23, 2023 pm 11:05 PM
insert character non-palindrome String changes

Make a string non-palindrome by inserting the given characters

Problem Statement

We are given the string str and the character c in the input. We need to insert the given character c into the string at the index in order to convert the string into a non-palindrome. If we cannot convert the string to a non-palindrome, print "-1".

Example

enter

str = ‘nayan’, c = ‘n’
Copy after login

Output

‘nnayan’
Copy after login
The translation of

Explanation

is:

Explanation

There can be multiple output strings because we can insert "n" at any index of the given string. Therefore, the output string can be "nnayan", "nanyan", "naynan", "nayann", etc.

enter

str = ‘sss’, c = ‘s’
Copy after login

Output

‘-1’
Copy after login
The translation of

Explanation

is:

Explanation

No matter where we insert "s" in the given string, it is always a palindrome.

enter

str = ‘tutorialspoint’, c = ‘p’
Copy after login

Output

‘ptutorialspoint’
Copy after login
The translation of

Explanation

is:

Explanation

Since str is already a non-palindrome, it prints the same string by inserting the character c at the first index.

The logic to solve the above problem is that if all characters in a given string are equal to the given character c, it cannot make it a palindrome. Otherwise, add a character at the first position and check whether the resulting string is a palindrome. If so, insert the given character at the end.

method one

In this method, we use while loop to check if the given string is a palindrome and for loop to check if all the characters in the given string are the same.

algorithm

  • Step 1 - Initialize the "cnt" variable to store the character count equal to the given character c.

  • Step 2 - Use a for loop to iterate over the string. If the character at index i in the string is equal to character c, add 1 to the value of "cnt".

  • Step 3 - If the value of 'cnt' is equal to the length of the string, print '-1' and execute the return statement.

  • Step 4 − Initialize a 'temp' variable using c str. After that, use the isPalindrome() function to check if the given string is a palindrome.

  • Step 5 - Define the isPalindrome() function.

  • Step 5.1 - Define variable 'left' and initialize it to 0. Also, define the variable 'right' and initialize it to the length of the string minus 1.

  • Step 5.2 - Use a while loop and match the characters at the beginning and end of the string. Additionally, increase the value of the "left" variable and decrease the value of the "right" variable.

  • Step 5.3 - If any mismatch is found, return false; otherwise, return true when all loop iterations are completed.

  • Step 6 - If the value of the "temp" variable is a non-palindrome, print it; otherwise, print str c.

The Chinese translation of

Example

is:

Example

#include <bits/stdc++.h>
using namespace std;
// Function to check if a string is a palindrome
bool isPalindrome(string str) {
   int left = 0;
   int right = str.length() - 1;
   // Keep comparing characters while they are the same
   while (right > left) {
      if (str[left++] != str[right--]) {
         return false;
      }
   }
   return true;
}
// Function to make a string non-palindrome by adding a character
void makeNonPalindrome(string str, char c) {
   int cnt = 0;
   for (int i = 0; i < str.length(); i++) {
      if (str[i] == c) {
         cnt++;
      }
   }
   if (cnt == str.length()) {
      cout << "-1";
      cout << "We can convert the string into a non-palindromic string by adding a given character at any position.";
      return;
   }
   cout << "Non-palindromic string is: " << endl;
   // append the character at the start, and check if it is a palindrome
   string temp = c + str;
   if (!isPalindrome(temp)){
      cout << temp << endl;
   } else {
      cout << str + c << endl;
   }
}
int main(){
   string str = "sass";
   char c = 's';
   makeNonPalindrome(str, c);
   return 0;
}
Copy after login

Output

Non-palindromic string is: 
sasss
Copy after login
  • Time complexity - O(N) because we use a for loop to count the total number of characters equal to the given characters.

  • Space Complexity - O(1) since we are not using any extra space.

Method 2

In this method, we use the same logic as in the first method, but we use a for loop to check if the string is a palindrome. Additionally, we have used the count() method to count the total number of given characters in the string.

algorithm

  • Step 1 - Use count() method, passing string as first parameter and given character c as second parameter to count the number of characters equal to the given character in in the string.

  • Step 2 - If the value returned by the count() method is equal to the length of the string, print "-1".

  • Step 3 - In the isPalindrome() function, initialize 'i' to 0 and 'j' to the length of the string - 1. After that, the user uses a loop to iterate and compare the starting and ending characters. If any mismatch occurs, return false.

  • Step 4 − Insert the given character at any position and check whether the string is non-palindrome. If the resulting string is a non-palindrome, we have the answer; otherwise, change the position of the given character in the string and check again.

The Chinese translation of

Example

is:

Example

#include <bits/stdc++.h>
using namespace std;
// Function to check if a string is a palindrome
bool isPalindrome(string str) {
   // Start from the leftmost and rightmost corners of str
   for (int i = 0, j = str.length() - 1; i < j; i++, j--){
      // If there is a mismatch, then the string is not palindrome; return false.
      if (str[i] != str[j])
         return false;
   }
   return true;
}
// Function to make a string non-palindrome by adding a character
void makeNonPalindrome(string str, char c){
   //   if all characters are the same as a given character, then the string cannot be made non-palindrome
   if (count(str.begin(), str.end(), c) == str.length()) {
      cout << "-1";
      cout << "We can convert the string into a non-palindromic string by adding a given character at any position.";
      return;
   }
   cout << "Non-palindromic string is: " << endl;
   // append the character at the start, and check if it is a palindrome
   string temp = c + str;
   if (!isPalindrome(temp)){
      cout << temp << endl;
   } else {
      cout << c + str << endl;
   }
}
int main() {
   string str = "nayan";
   char c = 'n';
   makeNonPalindrome(str, c);
   return 0;
}
Copy after login

Output

Non-palindromic string is: 
nnayan
Copy after login
  • Time complexity - O(N)

  • Space Complexity - O(1)

in conclusion

We learned two methods to convert a given string into a non-palindrome string, that is, insert the given character at any position. Both methods use the same logic but in first method we have written manual function to count the number of same characters which are equal to given character while in second method we have used count() method .

The first method is more suitable for learning purposes, and the second method is more suitable for real-time development.

The above is the detailed content of Make a string non-palindrome by inserting the given characters. 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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

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)

C language data structure: data representation and operation of trees and graphs C language data structure: data representation and operation of trees and graphs Apr 04, 2025 am 11:18 AM

C language data structure: The data representation of the tree and graph is a hierarchical data structure consisting of nodes. Each node contains a data element and a pointer to its child nodes. The binary tree is a special type of tree. Each node has at most two child nodes. The data represents structTreeNode{intdata;structTreeNode*left;structTreeNode*right;}; Operation creates a tree traversal tree (predecision, in-order, and later order) search tree insertion node deletes node graph is a collection of data structures, where elements are vertices, and they can be connected together through edges with right or unrighted data representing neighbors.

The truth behind the C language file operation problem The truth behind the C language file operation problem Apr 04, 2025 am 11:24 AM

The truth about file operation problems: file opening failed: insufficient permissions, wrong paths, and file occupied. Data writing failed: the buffer is full, the file is not writable, and the disk space is insufficient. Other FAQs: slow file traversal, incorrect text file encoding, and binary file reading errors.

How to calculate c-subscript 3 subscript 5 c-subscript 3 subscript 5 algorithm tutorial How to calculate c-subscript 3 subscript 5 c-subscript 3 subscript 5 algorithm tutorial Apr 03, 2025 pm 10:33 PM

The calculation of C35 is essentially combinatorial mathematics, representing the number of combinations selected from 3 of 5 elements. The calculation formula is C53 = 5! / (3! * 2!), which can be directly calculated by loops to improve efficiency and avoid overflow. In addition, understanding the nature of combinations and mastering efficient calculation methods is crucial to solving many problems in the fields of probability statistics, cryptography, algorithm design, etc.

What are the basic requirements for c language functions What are the basic requirements for c language functions Apr 03, 2025 pm 10:06 PM

C language functions are the basis for code modularization and program building. They consist of declarations (function headers) and definitions (function bodies). C language uses values ​​to pass parameters by default, but external variables can also be modified using address pass. Functions can have or have no return value, and the return value type must be consistent with the declaration. Function naming should be clear and easy to understand, using camel or underscore nomenclature. Follow the single responsibility principle and keep the function simplicity to improve maintainability and readability.

Concept of c language function Concept of c language function Apr 03, 2025 pm 10:09 PM

C language functions are reusable code blocks. They receive input, perform operations, and return results, which modularly improves reusability and reduces complexity. The internal mechanism of the function includes parameter passing, function execution, and return values. The entire process involves optimization such as function inline. A good function is written following the principle of single responsibility, small number of parameters, naming specifications, and error handling. Pointers combined with functions can achieve more powerful functions, such as modifying external variable values. Function pointers pass functions as parameters or store addresses, and are used to implement dynamic calls to functions. Understanding function features and techniques is the key to writing efficient, maintainable, and easy to understand C programs.

Function name definition in c language Function name definition in c language Apr 03, 2025 pm 10:03 PM

The C language function name definition includes: return value type, function name, parameter list and function body. Function names should be clear, concise and unified in style to avoid conflicts with keywords. Function names have scopes and can be used after declaration. Function pointers allow functions to be passed or assigned as arguments. Common errors include naming conflicts, mismatch of parameter types, and undeclared functions. Performance optimization focuses on function design and implementation, while clear and easy-to-read code is crucial.

C language multithreaded programming: a beginner's guide and troubleshooting C language multithreaded programming: a beginner's guide and troubleshooting Apr 04, 2025 am 10:15 AM

C language multithreading programming guide: Creating threads: Use the pthread_create() function to specify thread ID, properties, and thread functions. Thread synchronization: Prevent data competition through mutexes, semaphores, and conditional variables. Practical case: Use multi-threading to calculate the Fibonacci number, assign tasks to multiple threads and synchronize the results. Troubleshooting: Solve problems such as program crashes, thread stop responses, and performance bottlenecks.

distinct function usage distance function c usage tutorial distinct function usage distance function c usage tutorial Apr 03, 2025 pm 10:27 PM

std::unique removes adjacent duplicate elements in the container and moves them to the end, returning an iterator pointing to the first duplicate element. std::distance calculates the distance between two iterators, that is, the number of elements they point to. These two functions are useful for optimizing code and improving efficiency, but there are also some pitfalls to be paid attention to, such as: std::unique only deals with adjacent duplicate elements. std::distance is less efficient when dealing with non-random access iterators. By mastering these features and best practices, you can fully utilize the power of these two functions.

See all articles