腾讯2017秋招笔试编程题(一)
程序员文章站
2024-03-07 13:26:45
...
腾讯2017秋招笔试编程题(一)
时间限制:1秒
空间限制:32768K
假定一种编码的编码范围是a ~ y的25个字母,从1位到4位的编码,如果我们把该编码按字典序排序,形成一个数组如下: a, aa, aaa, aaaa, aaab, aaac, … …, b, ba, baa, baaa, baab, baac … …, yyyw, yyyx, yyyy 其中a的Index为0,aa的Index为1,aaa的Index为2,以此类推。 编写一个函数,输入是任意一个编码,输出这个编码对应的Index.
输入描述:
输入一个待编码的字符串,字符串长度小于等于100.
输出描述:
输出这个编码的index
输入例子1:
baca
输出例子1:
16331
代码如下:
#include <iostream>
#include <string>
#include <unistd.h>
using namespace std;
int get_string_index(const string &str)
{
int index = -1;
string temp;
const char all_valid_char[] = {' ','a','b','c','d','e','f','g','h','i','j','k','l','m','n',
'o','p','q','r','s','t','u','v','w','x','y'};
temp.resize(4);
for(int i=1;i<26;++i){
temp.at(0) = all_valid_char[i];
for(int j=0;j<26;++j){
temp.at(1) = all_valid_char[j];
if( !j ){
index++;
temp.resize(1);
if( temp == str ){
return index;
}
temp.resize(4);
continue;
}
for(int m=0;m<26;++m){
temp.at(2) = all_valid_char[m];
if( !m ){
index++;
temp.resize(2);
if( temp == str ){
return index;
}
temp.resize(4);
continue;
}
for(int n=0;n<26;++n){
temp.at(3) = all_valid_char[n];
index++;
if( !n ){
temp.resize(3);
}
if( temp == str ){
return index;
}
if( temp.size() != 4 )
temp.resize(4);
}
}
}
}
return 0;
}
int main()
{
int index = get_string_index("baca");
cout << " <<<<<<<<<<<<< index = " << index << " >>>>>>>>>>> " << endl;
return 0;
}
执行结果如下:
<<<<<<<<<<<<< index = 16331 >>>>>>>>>>>
欢迎大家讨论!
上一篇: JAVA实现的简单万年历代码
下一篇: openmp开启后计算结果错误原因