版权声明: 本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!
title: 模板 - string 转 uint 的一种快速算法 categories:
基于 C++14 标准, 一种高效的十进制字符串转无符号整数的算法
{% note warning %} 仅在小端 CPU 下正确 {% endnote %}
{% note warning %}
{% endnote %}
<!-- more -->{% note warning %} https://cplib.tifa-233.com/src/code/fast/str2uint_mod.hpp 存放了笔者对该算法/数据结构的最新实现, 建议前往此处查看相关代码 {% endnote %}
参见 Fast numeric string to int – Johnny Lee – Improving stuff one bit at a time
<details open> <summary><font color='orange'>Show code</font></summary> {% icodeweb blog lang:cpp fast-str2uint/dec2uint_mod.hpp %} </details>