手机小键盘上可能的字符组合
Posted
技术标签:
【中文标题】手机小键盘上可能的字符组合【英文标题】:Possible combinations of characters on a phone's numpad 【发布时间】:2015-01-12 15:39:26 【问题描述】:我最近在 C 语言中遇到了一个问题。我们有一个手机的小键盘,布局如下:
1[abc] 2[def] 3[ghi] 4[jkl] 5[mno] 6[pqr] 7[st] 8[uv] 9[wx] 0[yz]如何提出一个 API,它为给定的数字输入提供属于每个数字的所有可能的字符组合。
例如input = 1234
那么 API 应该打印所有可能的字符组合-
adgj
bdgj
cdgj
aegj
begj
cegj
..等等。
有简单的方法吗?除了硬编码嵌套的for
循环。
我得到了递归的提示,但无法摆脱它。
【问题讨论】:
简单的蛮力解决方案是使用嵌套循环。 @JoachimPileborg:如果你总是有四位数字,嵌套循环是可以的。我认为递归是一个更好的解决方案。 @MOehm 是的,递归可能是更好的解决方案,尤其是对于一般情况。然而很多新手在开始时往往会遇到递归问题,所以如果从一开始就知道位数,那么嵌套循环绝对是最简单的解决方案。 @MOehm 递归为许多问题提供了优雅的解决方案,但一个很大的缺点,尤其是对于初学者来说,是调试逻辑错误和/或编程错误(段错误等)。 ) 出现在递归函数中。特别是在递归迭代数组索引的情况下(即recfn (index + 1)
等)。在嵌套循环中捕获调试问题要容易得多。虽然,递归的好处是——它将促使人们更早地熟悉gdb
。
我承认嵌套循环是直接的解决方案,如果问题是关于四位数的,我不会反对。但是 OP 询问了递归和“API”,这暗示了一些通用和可重用的东西。递归是一种有价值的技术,即使它对初学者来说可能更复杂。
【参考方案1】:
递归是解决此类问题的好方法,您必须找到组合。与嵌套循环相比的优势在于递归适用于任意长度的字符串。
在你的情况下,你需要一个函数:
原始字符串 解决方案的辅助char
缓冲区*和
当前索引,从 0 开始。
递归函数需要一个终止条件:当你到达原始字符串的末尾时,打印它并返回。
否则,取下一个数字,检查它是否有效,确定与之关联的字母,然后为每个字母调用函数。即对于每个字母,将其复制到当前索引处的解中,然后调用具有下一个索引的函数。
下面是一个示例实现,它使用一个中间函数来做一些管理工作:
#include <stdlib.h>
#include <stdio.h>
/*
* Recursive back-end, that produces all combinations in sol.
*/
void alpha_r(const char *str, char *sol, int index)
const char *combo[] =
"yz", "abc", "def", "ghi", "jkl", "mno", "pqr", "st", "uv", "wx"
;
if (str[index] == '\0')
printf("%s\n", sol);
else
int k = str[index] - '0';
const char *p = combo[k];
while (*p)
sol[index] = *p++;
alpha_r(str, sol, index + 1);
/*
* Non-recursive front-end that checks the string for validity
* and creates a temporary buffer for the solutions.
*/
void alpha(const char *str)
int len = 0;
while (str[len])
if (str[len] < 0 || str[len] > '9')
fprintf(stderr, "Invalid input.\n");
return;
len++;
char sol[len + 1];
sol[len] = '\0';
alpha_r(str, sol, 0);
int main()
alpha("123");
return 0;
*) 您也可以使用字符串本身来存储解决方案。
【讨论】:
+1 非常做得很好。错误处理,尤其是从"123"
而不是123
开始,因为这种方法可以很好地处理"000"
。如果需要int
输入,将0
转换为"0"
很简单。【参考方案2】:
(顺便说一句,这不是手机的标准布局。)
棘手的部分是处理数据结构。输入字符串由数字组成很方便,因为这样我们可以使用字符串中的数字来索引一个数组,该数组包含每个数字可能的字母。
这个想法是使用 for 循环修改特定索引处的输出字符串,以遍历该索引处的所有可能替换。然后递归移动到 for 循环体中输出数组中的下一个索引。
如果到达数组的末尾,则打印并返回。
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
char* data[] = "0", "1", "2abc", "3def", "4ghi", "5jkl", "6mno", "7prs", "8tuv", "9wxy";
char* input = "23456783";
char* arr;
void current(int index)
if(index == strlen(input)) printf("%s\n", arr);
else
for(int i = 0; i < strlen(data[input[index] - '0']); ++i)
arr[index] = data[input[index] - '0'][i];
current(index + 1);
void main()
arr = malloc(strlen(input) + 1);
arr[strlen(input)] = '\0';
printf("%s\n\n", input);
current(0);
【讨论】:
【参考方案3】:递归只是嵌套四个for
循环的一种偷偷摸摸的方式。这是代码的样子
#include <stdio.h>
void sneaky( int depth, int maxDepth, char str[] )
char c, start;
start = 'a' + depth * 3;
for ( c = start; c < start + 3; c++ )
str[depth] = c;
str[depth+1] = '\0';
if ( depth == maxDepth )
printf( "%s\n", str );
else
sneaky( depth + 1, maxDepth, str );
int main( void )
char str[5] = 0 ;
sneaky( 0, 3, str );
您还可以使用简单的计数算法来解决此问题以及类似的组合问题。计数算法模拟自然计数,将最低有效位从 0 递增到 9。当最低有效位从 9 回绕到 0 时,左边的下一位将递增。
同样可以解决 OP 的问题。但在这种情况下,数字有两个或三个可能的值。如果您检查 OP 中的模式,很明显最低有效数字在左侧。在模式中adgj
bdgj
cdgj
aegj
你可以看到a
变成b
,b
变成c
,当c
回绕到a
时,d
变成e
。
这是代码
#include <stdio.h>
#include <stdlib.h>
static char InitialValue[] = 'y', 'a', 'd', 'g', 'j', 'm', 'p', 's', 'u', 'w' ;
static char NextValue[] = 'b', 'c', 'a', 'e', 'f', 'd', 'h', 'i', 'g',
'k', 'l', 'j', 'n', 'o', 'm', 'q', 'r', 'p',
't', 's', 'v', 'u', 'x', 'w', 'z', 'y' ;
static void error( char *msg )
fprintf( stderr, "%s\n", msg );
exit( EXIT_FAILURE );
int main( void )
int i, oldDigit;
char str[12];
// get the input string from the user
printf( "Enter the input string: " );
fflush( stdout );
if ( scanf( "%10s", str ) != 1 )
error( "whatever" );
// convert the input string to the corresponding first output string
for ( i = 0; str[i] != '\0'; i++ )
if ( str[i] < '0' || str[i] > '9' )
error( "invalid input string" );
str[i] = InitialValue[str[i] - '0'];
printf( "%s\n", str );
// use a simple counting algorithm to generate the string combinations
for (;;)
for ( i = 0; str[i] != '\0'; i++ )
oldDigit = str[i]; // save the current digit
str[i] = NextValue[oldDigit - 'a']; // advance the digit to the next value
if ( str[i] > oldDigit ) // if the digit did not wrap
break; // then we've got a new string
if ( str[i] == '\0' ) // if all the digits wrapped
break; // then we're done
printf( "%s\n", str ); // output the new string
return( EXIT_SUCCESS );
【讨论】:
【参考方案4】:一种查找您正在寻找的组合的方法可能是按位逻辑,使用二进制数和整数。二进制数将与字符串一样长,其中 0 和 1 充当字符串中包含和排除的内容的开关。这里的事情是我们根据“按下”的数字使用基数 3 或 4,并且
如果以四为底,则必须应用一些 if 语句来移动实际上以三为底的那些。
【讨论】:
同意@MOehm。字符串不必有意义。我正在寻找一个可以通过递归执行此操作的 API。 是的,您可以使用 base-3 计数方案来完成任务而无需递归。 @MOehm 我改变了我的答案。我想我会通知你,以便你可以根据需要更改评论 我已经删除了评论,因为它与当前的答案没有任何关系。以上是关于手机小键盘上可能的字符组合的主要内容,如果未能解决你的问题,请参考以下文章