Blog

TZZ's technical blog — 62 posts, documenting debugging war stories and engineering practice.

Article TimelineBrowse all posts along a timelineView Timeline

C语言 auto

auto在C语言中声明自动存储变量,在C++中作为类型说明符推断类型

Read more →

String to integer atoi

C语言解法 100%/100%, 欢迎访问我的Githubhttps://github.com/tzzs/LeetCode-CN 。 1. 找到整数起始位置,即先去掉前面的空格,找到非空格有效字符,标志位置1,即整数计算开始 2. 开始进行数字的求和,从读取到的第一个数字开始求和,到下一位的时候即为

Read more →

Windows 增加多个可用SSH公钥

之前由于使用Github Pages作为博客地址导致国内访问速度过慢,增加了腾讯云CDN依旧有大量数据缓存失败,所以更换了国内Coding作为博客镜像(之前用过Gitee Pages,但是普通用户无法自定义域名),在Hexo增加Coding仓库配置时,无法识别新增的SSH公钥,显示 Permissi

Read more →