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

parse string once and convert it to float

时间:2014-05-22 14:45:04      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   c   code   java   

一个小题目,模拟stof()功能,网上答案很多,但是感觉都不够简洁。
主要是整数部分和小数部分实现由一定区别,这里尝试不区分整数和小数部分,先忽略小数点,然后最后在做一个除操作。
比如输入:100.123,先转换为100123,然后除1000

bubuko.com,布布扣
#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
#include <string>
using namespace std;
//simulate the stof() method
float _stof(string s){
    float res = 0;
    if(s.length() > 0){
        int dp= -1;
        for (int i = 0; i < s.length(); ++i){
            if(s[i] == . )
                dp = 0;            
            if(s[i] < 0 || s[i] >9)
                continue;
            if(dp > -1)
                dp++;
            res = res*10 + s[i] - 0;
        }
        if(dp > -1)
            res = res/pow(10, dp);      
    }
    return res;
}
  
bubuko.com,布布扣

 

parse string once and convert it to float,布布扣,bubuko.com

parse string once and convert it to float

标签:style   blog   class   c   code   java   

原文地址:http://www.cnblogs.com/sparkles/p/3744794.html

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