ในที่นี้ เราจะพบปัญหาที่น่าสนใจอย่างหนึ่งที่เกี่ยวข้องกับตัวย่อที่เป็นตัวอักษรและตัวเลขของสตริงที่ระบุ ความยาวของสตริงน้อยกว่า 10 เราจะพิมพ์ตัวย่อที่เป็นตัวอักษรและตัวเลขคละกันทั้งหมด
ตัวย่อที่เป็นตัวอักษรและตัวเลขอยู่ในรูปของอักขระผสมกับตัวเลข ค่าของตัวเลขนั้นคือจำนวนอักขระที่ขาดหายไป อาจมีสตริงย่อยที่ข้ามไปจำนวนเท่าใดก็ได้ ไม่มีสตริงย่อยสองสตริงที่อยู่ติดกัน ให้เราดูอัลกอริทึมเพื่อให้ได้แนวคิด
อัลกอริทึม
printAbbreviation(s, index, max, str) −
begin if index is same as max, then print str end if add s[index] at the last of str printAbbreviation(s, index + 1, max, str) delete last character from str count := 1 if str is not empty, then if the last character of str is a digit, then add last digit with the count value delete last character from str end if end if add count after the str printAbbreveation(s, index + 1, max, str) end
ตัวอย่าง
#include <iostream> using namespace std; void printAbbreviation(const string& s, int index, int max_index, string str) { if (index == max_index) { //if string has ended cout << str << endl; return; } str.push_back(s[index]); // push the current character to result printAbbreviation(s, index + 1, max_index, str); //print from next index str.pop_back(); //remove last character int count = 1; if (!str.empty()) { if (isdigit(str.back())) { //if the last one is digit, then count += (int)(str.back() - '0'); //count the integer value of that digit str.pop_back(); //remove last character } } char to_char = (char)(count + '0'); //make count to character str.push_back(to_char); printAbbreviation(s, index + 1, max_index, str); //do for next index } void printCombination(string str) { if (!str.length()) //if the string is empty return; string str_res; printAbbreviation(str, 0, str.length(), str_res); } int main() { string str = "HELLO"; printCombination(str); }
ผลลัพธ์
HELLO HELL1 HEL1O HEL2 HE1LO HE1L1 HE2O HE3 H1LLO H1LL1 H1L1O H1L2 H2LO H2L1 H3O H4 1ELLO 1ELL1 1EL1O 1EL2 1E1LO 1E1L1 1E2O 1E3 2LLO 2LL1 2L1O 2L2 3LO 3L1 4O 5