题解 | #数字颠倒#

数字颠倒

http://www.nowcoder.com/practice/ae809795fca34687a48b172186e3dafe

#include<iostream>
#include<string>
using namespace std;
int main()
{
    int a;
    cin>>a;
    string res;
    res=to_string(a);
    int len=res.size();
    char * l,* r;//使用两个字符指针分别指向字符串的首位和末位
    l=&res[0],r=&res[len-1];
    while(l<r)//不使用额外内存,直接原地交换字符,节省内存消耗
    {
        char temp;
        temp=*l;
        *l=*r;
        *r=temp;
        l++;//左指针右移
        r--;//右指针左移
    }
    cout<<res<<endl;
    return 0;
}
全部评论

相关推荐

点赞 评论 收藏
分享
菜菜咪:1. 可以使用简历网站的模版,美观度会更好一点 2. 邮箱可以重新申请一个,或者用qq邮箱的别名,部分hr可能会不喜欢数字邮箱 3. 项目经历最好分点描述,类似的项目很多,可以参考一下别人怎么写的 4. 自我评价可加可不加,技术岗更看重技术。最后,加油,优秀士兵
点赞 评论 收藏
分享
评论
2
收藏
分享
牛客网
牛客企业服务