String conversion (also known as string conversion) is an operation in C that stores the result in an output array after the entire process is executed. In C, there is a function called "transform()", which exists in the directory of the C environment, through which we can convert a string into a new string.
There are two forms of conversion functions −
Unary operation
The operation is applied to each element of the input array.
After the operation is completed, the results will be stored in an output array.
Binary operations
The operation applies to each element of a specific array.
The first input element and the second corresponding input element participate in the operation.
The output data will be stored in an output array.
A subsequence string is a brand new string generated by performing various operations on the input string (for example: deletion). For subsequence strings, the operation occurs without affecting the remaining characters.
For string conversion, the input contains an operation string of length n 1. The original characters belong to the series a to z. The length of the print string is treated as n here, which is an output string.
In this article, we will learn how to convert a string in C environment to have abcd….z as a subsequence.
Recursive algorithm generates subsequent strings
By using a recursive approach, the following is a possible algorithm for a subsequent string. This is a specific string and T is the time it takes to complete the operation.
Step 1 - Count the number of occurrences.
Step 2 - If i = length(s) and j = length(T).
The third step − then returns 1.
Step 4 - End.
Step 5 - If i = length(S).
Step 6 - Then return 0.
Step 7 - End.
Step 8 − Count
Step 9 - If, j
Step 10 − Count
Step 11 - End.
Step 12 - Count
Step 13 - Return the count.
Step 14 - End.
Syntax for subsequent arrays
Here, we have two given sequences. X and Y. Initialize a table with a dimension of X.length * Y.length X.label1 = X Y.label2 = Y CS1[0][] = 0 CS2[][0] = 0 Start from CS[1][1] Compare X[i] and Y[j] If X[i] = Y[j] CS[i][j] = 1 + CS[i-1, j-1] Point an arrow to CS[i][j] Else CS[i][j] = max(CS[i-1][j], CS[i][j-1]) Point an arrow to max(CS[i-1][j], CS[i][j-1])
Here we create a basic working syntax for subsequent arrays. When there are two sequences, we have to follow the following steps to get the output.
Following method
Method 1−Use C to convert string
Method 2 for unary operations on strings using C
Method 3 of using C to perform binary operations on strings
Use C to print all possible subsequent strings
Method to convert string to having abcd….z as subsequence using C 5
Convert string using C
In this C code, we create a new string and remove all vowels from the input string. # is added in place of these vowels.
Example 1
#include <bits/stdc++.h> using namespace std; string change_case(string r) { int l = r.length(); for(int i = 0 ; i < l ; i++) { if(r[i] >= 'a' && r[i] <= 'z') r[i] = r[i] - 32; else if(r[i] >= 'A' && r[i] <= 'Z') r[i] = r[i] + 32; } return r; } string delete_vowels(string a) { string temp = ""; int l = a.length(); for(int i = 0 ; i < l ; i++) { if(a[i] != 'a' && a[i] != 'e' && a[i] != 'i' && a[i] != 'o' && a[i] != 'u' && a[i] != 'A' && a[i] != 'E' && a[i] != 'O' && a[i] != 'U'&& a[i] != 'I') temp += a[i]; } return temp; } string insert_hash(string a) { string temp = ""; int l = a.length(); for(int i = 0 ; i < l ; i++) { if((a[i] >= 'a' && a[i] <= 'z') || (a[i] >= 'A' && a[i] <= 'Z')) temp = temp + '#' + a[i]; else temp = temp + a[i]; } return temp; } void transformSting(string a) { string b = delete_vowels(a); string c = change_case(b); string d = insert_hash(c); if(d=="") cout<<"-1"<<endl; else cout << d<<endl; } int main() { string a = "RudraDevDas!!"; string b = "aeiou"; transformSting(a); transformSting(b); return 0; }
Output
#r#D#R#d#V#d#S!! -1
Use C to perform unary operations on strings
In this particular code, we show how to perform unary operations on the input array. This function accepts a pointer to the start and end position of a single input. And operate at the beginning of the output array.
The Chinese translation ofExample 2
is:Example 2
#include <iostream> #include <algorithm> using namespace std; int op_increment (int x) { x = x + 1; return x; } int main () { int n = 5; int input_array[] = {7, 16, 10, 97, 2001}; int output_array[n]; std::cout << "Input array present here:"; for(int i=0; i<5; i++){ cout << ' ' << input_array[i]; } cout << '\n'; transform (input_array, input_array+5, output_array, op_increment); std::cout << "The output array now contains with:"; for(int i=0; i<5; i++){ cout << ' ' << output_array[i]; } cout << '\n'; return 0; }
Output
Input array present here: 7 16 10 97 2001 The output array now contains with: 8 17 11 98 2002
Use C to perform binary operations on strings
In this particular code, we show how to perform binary operations on the input array. The function transform() adds a pointer between the starting point and the first input array. Remember that binary operations always operate on two input data sets.
The Chinese translation ofExample 3
is:Example 3
#include <iostream> #include <algorithm> #include <vector> using namespace std; int op_add (int i, int j) { return i+j; } int main () { int n = 5; int arr1[] = {7, 16, 10, 2001, 1997}; int arr2[] = {1, 2, 3, 4, 5}; int output[n]; std::cout << "Input data in array1:"; for(int i=0; i<n; i++){ cout << ' ' << arr1[i]; } cout << '\n'; std::cout << "Input data in array2:"; for(int i=0; i<n; i++){ cout << ' ' << arr2[i]; } cout << '\n'; std::transform (arr1, arr1+n, arr2, output, op_add); std::cout << "Output array is here now:"; for(int i=0; i<5; i++){ cout << ' ' << output[i]; } cout << '\n'; return 0; }
Output
Input data in array1: 7 16 10 2001 1997 Input data in array2: 1 2 3 4 5 Output array is here now: 8 18 13 2005 2002
Use C to print all subsequent strings
Apply the concepts of selection and non-selection to find all subsequences of a specific array. During this process, some characters may be removed without changing the order of the elements. Here, the time complexity of this process is O(2^n) and the space complexity is O(n).
Example 4
#include <bits/stdc++.h> using namespace std; void printSubsequence(string input, string output) { if (input.empty()) { cout << output << endl; return; } printSubsequence(input.substr(1), output + input[0]); printSubsequence(input.substr(1), output); } int main() { string output = ""; string input = "rudraabonikoaa"; printSubsequence(input, output); return 0; }
Output
rudraabonikoaa rudraabonikoa rudraabonikoa rudraaboniko rudraabonikaa rudraabonika rudraabonika rudraabonik rudraabonioaa rudraabonioa rudraabonioa rudraabonio rudraaboniaa rudraabonia rudraabonia
Convert a string to have abcd...z as a subsequence
This is a specific procedure for converting a string into a form that has abcd...z as a subsequence.
Initialization characters.
If the length is less than 26, return false.
Iterate the loop from 0 to s.size() - 1.
If the character reaches z, break out of the loop.
If the current character is less than s or equal to character.
Replace the increment of the current character with 1.
If the character is less than or equal to z, return false.
Otherwise, return true.
在这个过程中,时间复杂度为O(n),辅助空间为O(1)。这里,n是特定字符串的长度。
Example 5
的中文翻译为:示例5
#include <bits/stdc++.h> using namespace std; bool transformString(string& s) { char ch = 'a'; if (s.size() < 26) return false; for (int i = 0; i < s.size(); i++) { if (int(ch) > int('z')) break; if (s[i] <= ch) { s[i] = ch; ch = char(int(ch) + 1); } } if (ch <= 'z') return false; return true; } int main() { string str = "aaaaaaaaaaaaaaaaaaaaaaaaaaa"; if (transformString(str)) cout << str << endl; else cout << "Not Possible" << endl; return 0; }
输出
abcdefghijklmnopqrstuvwxyza
结论
在本文中,我们学习了使用C++环境进行字符串转换及其不同形式。通过遵循特定的算法和语法,我们检查和构建了一些不同的C++代码,并了解了如何转换字符串,使其具有abcd...z作为子序列。
The above is the detailed content of Convert a string to a form that has abcd..z as a subsequence. For more information, please follow other related articles on the PHP Chinese website!

使用Boolean类的parseBoolean()方法将字符串转换为布尔值的方法在Java编程中,经常会遇到需要将字符串转换为布尔值的情况。而Java中的Boolean类提供了一个非常方便的方法——parseBoolean(),可以将字符串转换为对应的布尔值。本文将详细介绍这个方法的使用,并提供相应的代码示例。首先,我们需要了解parseBoolean()方

快速学会在Go语言中进行字符串到数组的转换在Go语言中,字符串与数组之间的转换是一个常见的操作,特别是在处理数据时经常会遇到需要将字符串转换为数组的情况。本文将介绍如何在Go语言中快速学会实现字符串到数组的转换,让你能够轻松应对类似的问题。在Go语言中,我们可以使用strings包提供的Split函数来将字符串按照指定的分隔符拆分成一个数组。以下是一

使用Java的Double.parseDouble()函数将字符串转换为双精度浮点数在Java编程中,我们经常需要将字符串转换为数值类型。对于双精度浮点数,Java提供了一个非常方便的方法,即Double.parseDouble()函数。本文将介绍该函数的用法,并附上一些示例代码,帮助读者更好地理解和使用该函数。Double.parseDouble()函数是

StringBuilder类的append()方法接受String值并将其添加到当前对象。将字符串值转换为StringBuilder对象-获取字符串值。附加使用append()方法将字符串获取到StringBuilder。示例在下面的Java程序中,我们是将字符串数组转换为单个StringBuilder对象。 实时演示publicclassStringToStringBuilder{ publicstaticvoidmain(Stringargs[]){&a

标题:使用PHP实现字符串转换为16进制并实现反向输出在日常开发中,我们有时候需要将字符串转换为16进制表示,以便进行数据传输或加密处理。本文将介绍如何使用PHP实现将字符串转换为16进制,并实现反向输出的功能。首先,我们需要编写一个PHP函数,来实现将字符串转换为16进制的功能。以下是一个示例代码:functionstringToHex($string)

使用PHP函数"strtolower"将字符串转换为小写在PHP中,有许多函数可以用来转换字符串的大小写。其中一个非常常用的函数是strtolower()。这个函数可以将字符串中的所有字符都转换为小写。下面是一个简单的示例代码,展示如何使用strtolower()函数来转换字符串为小写:<?php//原始字符串$string="

如何使用Python的upper()函数将字符串转换为大写,需要具体代码示例Python是一种简单易学的编程语言,它提供了许多内置函数来处理字符串。其中一种常用的函数是upper()函数,它可以将字符串中的所有字母转换为大写形式。本文将详细介绍如何使用Python的upper()函数,并提供相应的代码示例。首先,让我们来了解一下upper()函数的用法。up

MySQL中如何使用LOWER函数将字符串转换为小写在MySQL数据库中,我们经常遇到需要将字符串转换为小写的情况,比如将用户输入的用户名转换为小写后进行验证,或者对某一列进行大小写不敏感的查找。这时候就可以使用MySQL内置函数LOWER来完成这个任务。LOWER函数是一种字符串函数,其作用是将字符串中的大写字母转换为小写。使用LOWER函数可以轻松地将字


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

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

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

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download
The most popular open source editor

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.
