leetcode 每日leetcode-Reverse Integer
原题: Reverse digits of an integer. Example1: x = 123, re…
C++ STL高效使用注意事项
高效使用STL 仅仅是个选择的问题,都是STL,可能写出来的效率相差几倍; 熟悉以下条款,高效的使用STL; …
leetcode 每日leetcode- ZigZag Conversion
原题目: The string “PAYPALISHIRING” is written in a zigzag…
leetcode 每日leetcode-Longest Substring Without Repeating Characters
原题目: Given a string, find the length of the longest sub…
C++ C++中new与malloc的10点区别
前言 几个星期前去面试C++研发的实习岗位,面试官问了个问题: new与malloc有什么区别? 这是个老生常…
leetcode 每日leetcode-Add Two Numbers
You are given two linked lists representing two non-neg…
multi-thread 我是一个线程
第一回 初生牛犊 我是一个线程,我一出生就被编了个号:0x3704,然后被领到一个昏暗的屋子里,在这里我发现了…
Alg Cordic之Log与Ln
This page describes a couple of algorithms for computin…
Alg Cordic算法之log应用
#include using namespace std; int fxlog(int x) { int t,…
Matlab Matlab三维视图颜色控制
1.caxis([cmin cmax]) 用来控制colorbar的上下边界,通过控制边界可以使各个子图使用同…
Python Python-yield理解篇
迭代器简介 通过列表生成式,我们可以直接创建一个列表。但是,受到内存限制,列表容量肯定是有限的。而且,创建一个…
Python Python字符编码unicode-vs-utf-8
字符编码 我们已经讲过了,字符串也是一种数据类型,但是,字符串比较特殊的是还有一个编码问题。 因为计算机只能处…
Python Python-Sax-xml分析
Python:使用基于事件驱动的SAX解析XML SAX的特点: 是基于事件的 API 在一个比 DOM 低的…
Editor Atom–active-power-mode插件
activate-power-mode atom package A work in progress pac…
Python Python除法与取余运算注意事项
1.除法运算 1.1 有一个操作数为负数 被除数到除数的距离整除除数,得到的数字加上符号…