码迷,mamicode.com
首页 > 其他好文 > 详细

字符串hash-26进制与10进制互相转换

时间:2018-03-31 22:18:13      阅读:641      评论:0      收藏:0      [点我收藏+]

标签:lov   post   字符   pos   key   div   turn   include   body   

Lovekey

http://acm.hdu.edu.cn/showproblem.php?pid=2100

 

#include <bits/stdc++.h>

using namespace std;

int change(int n,int a[])
{
    int i = 0;
    while(n)
    {
        a[i++] = n%26;
        n/=26;
    }
    return i;
}
int main()
{
     int n;
    int i,l;
    int a[10];
    scanf("%d",&n);
    l=change(n,a);
    for(i=0;i<n;i++)
    printf("%c",a[i]+‘A‘);
    printf("\n");
}

  

#include <bits/stdc++.h>

using namespace std;

int main()
{
    //zzz zzy zzx ... zza ...zyz
	int L,n;
	int ans[11];
	cin>>L>>n;
	
	//3 7421(10进制下的)
	int i=L;
	n-=1;
	while(n)
    {
        ans[i--]=n%26;
        n/=26;
    }
    for(int i=1; i<=L; i++)
    {
        printf("%d ",ans[i]);
    }
    for(int i=1;i<=L;i++)
    {
        printf("%c",‘z‘-ans[i]);
    }
    printf("\n");

	return 0;
}

  

字符串hash-26进制与10进制互相转换

标签:lov   post   字符   pos   key   div   turn   include   body   

原文地址:https://www.cnblogs.com/Roni-i/p/8684306.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!