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’
Output
‘nnayan’
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’
Output
‘-1’
Explanation
is:Explanation
No matter where we insert "s" in the given string, it is always a palindrome.
enter
str = ‘tutorialspoint’, c = ‘p’
Output
‘ptutorialspoint’
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.
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; }
Output
Non-palindromic string is: sasss
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.
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; }
Output
Non-palindromic string is: nnayan
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!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

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

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











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 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.

Algorithms are the set of instructions to solve problems, and their execution speed and memory usage vary. In programming, many algorithms are based on data search and sorting. This article will introduce several data retrieval and sorting algorithms. Linear search assumes that there is an array [20,500,10,5,100,1,50] and needs to find the number 50. The linear search algorithm checks each element in the array one by one until the target value is found or the complete array is traversed. The algorithm flowchart is as follows: The pseudo-code for linear search is as follows: Check each element: If the target value is found: Return true Return false C language implementation: #include#includeintmain(void){i

The history and evolution of C# and C are unique, and the future prospects are also different. 1.C was invented by BjarneStroustrup in 1983 to introduce object-oriented programming into the C language. Its evolution process includes multiple standardizations, such as C 11 introducing auto keywords and lambda expressions, C 20 introducing concepts and coroutines, and will focus on performance and system-level programming in the future. 2.C# was released by Microsoft in 2000. Combining the advantages of C and Java, its evolution focuses on simplicity and productivity. For example, C#2.0 introduced generics and C#5.0 introduced asynchronous programming, which will focus on developers' productivity and cloud computing in the future.

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.

How to output a countdown in C? Answer: Use loop statements. Steps: 1. Define the variable n and store the countdown number to output; 2. Use the while loop to continuously print n until n is less than 1; 3. In the loop body, print out the value of n; 4. At the end of the loop, subtract n by 1 to output the next smaller reciprocal.

C language functions include definitions, calls and declarations. Function definition specifies function name, parameters and return type, function body implements functions; function calls execute functions and provide parameters; function declarations inform the compiler of function type. Value pass is used for parameter pass, pay attention to the return type, maintain a consistent code style, and handle errors in functions. Mastering this knowledge can help write elegant, robust C code.

Integers are the most basic data type in programming and can be regarded as the cornerstone of programming. The job of a programmer is to give these numbers meanings. No matter how complex the software is, it ultimately comes down to integer operations, because the processor only understands integers. To represent negative numbers, we introduced two's complement; to represent decimal numbers, we created scientific notation, so there are floating-point numbers. But in the final analysis, everything is still inseparable from 0 and 1. A brief history of integers In C, int is almost the default type. Although the compiler may issue a warning, in many cases you can still write code like this: main(void){return0;} From a technical point of view, this is equivalent to the following code: intmain(void){return0;}
