我正在尝试复制excel提供标签的方式
A = 1
B = 2
等等,以便它最终到达
AB
AC
AD
等等。
如何通过算法获取数字(如52)并将其转换为等效的字母表示?
答案 0 :(得分:2)
string get(int a) {
a--; // Reduce by one to make the values with 1 letter 0..25,
// with two - 26.. 26^2-1 and so on
int val = 0; // number of columns with no more then given number of letters
int number = 0;
while (val < a) {
val = val*26 + 26;
number++;
}
val = (val - 26)/26;
a -= val; // subtract the number of columns with less letters
string res;
for (int i = 0; i < number; ++i) {
res.push_back(a%26 + 'A');
a /= 26;
}
reverse(res.begin(), res.end());
return res;
}
希望有所帮助。
答案 1 :(得分:2)
两个字母
#include <iostream>
#include <string>
using namespace std;
string int2alphas(int i) {
string res;
if (i > 26 - 1)
res.push_back(i / 26 + 'A' - 1);
else
res.push_back(' ');
res.push_back(i % 26 + 'A');
return res;
}
void test(int t) {
cout << t << "-" << int2alphas(t) << endl;;
}
int main() {
for (int i = 0; i < 55; i++)
test(i);
}
答案 2 :(得分:1)
Convert.ToInt32(“52”,26)....现在只需创建正确的基本实现。 ?做作业?
答案 3 :(得分:1)
您可能会想到写一些算法:
ConvertToAlphaCode(number input)
{
Array Chars=[A-Z]
if (number<= 26)
return Chars[number-1]
else
...
}
答案 4 :(得分:1)
看看:
A, B, C, D, ..., Y, Z, AA, AB, AC, AD, ..., AY, AZ, BA, BB, ...
完全像:
0, 1, 2, 3, 4, ..., 9, 10, 11, 12, 13, ..., 19, 20, 21, ...
但是使用数字A..Z
代替0..9
。所以:
Algorithmic-ally我不知道如何得到一个数字,比如说52,并将其转换为等效的字母表示。
您需要使用通用算法将base-N中的数字转换为base-M(如十进制到十六进制),但N等于10且M等于26(字母),并确保使用正确的字符代表最后的“数字”。就这么简单!
答案 5 :(得分:1)
这样做会很好:
string calcString(int number)
{
string returnValue = "";
do
{
int rm = number % 26;
returnValue += (char)(rm+ 'A');
number = (number - rm) / 26;
}
while (number > 0);
return returnValue;
}
例如,calcString(11);
会产生L
。
如果这不是你正在寻找的计算,请留下评论以澄清你想要的东西,我会回来改变它。
答案 6 :(得分:0)
从数字到字母:
static std::string const letters( "ABCDEFGHIJKLMNOPQRSTUVWXYZ" );
assert( n >= 0 && n < letters.size() );
return letters[n];
从信件到数字:
static std::string const letters( "ABCDEFGHIJKLMNOPQRSTUVWXYZ" );
char const* result = std::find(
letters.begin(),
letters.end(),
isupper( static_cast< unsigned char >( l ) );
assert( result != letters.end() );
return result - letters.begin();
编辑:
这只会处理每个方向的单个字符。更多,它是 只需使用通常的转换例程进行基本转换。
答案 7 :(得分:0)
这适用于所有类型的字母(小,大)。
using namespace std;
int lettervalue (string l) {
l=l[0];
string alpha="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
int idx = alpha.find(l)+1;
if(idx>26){
idx=idx-26;
}
return idx;
}
使用它:
cout << lattervalue("e"); //will return 5(int)