摘要: 1.git 安装与使用:见博客 http://blog.csdn.net/azhegps/article/details/53993629 2.git 代码提交与查看状态 git statusgit diffgit statusgit commit 文件名 git push 3.git 分支切换 1 阅读全文
posted @ 2018-01-18 15:51 fullnamefull 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 首先感谢几位大神: http://blog.csdn.net/qq_15267341/article/details/52074225 http://blog.csdn.net/weixin_36303734/article/details/54898166 http://www.jianshu.c 阅读全文
posted @ 2017-10-15 14:30 fullnamefull 阅读(1800) 评论(0) 推荐(0) 编辑
摘要: 如题,输入一个字符串,根据空格反转单词, 问题描述: 1、单词构成:无空格字符构成一个单词 2、输入字符串可以包含前导和尾随空格,但反转后的字符不能包括。 3、每个单词之间存在多个空格 方法:先提取每个单词,每次反转。 代码: #include <string> #include <vector> 阅读全文
posted @ 2017-06-26 23:36 fullnamefull 阅读(1932) 评论(0) 推荐(0) 编辑
摘要: #include <algorithm>#include <iostream> int Partition(int X[], int left, int right){ int pivot = X[left]; int L = left; int R = right; while(L < R) { 阅读全文
posted @ 2016-12-22 10:09 fullnamefull 阅读(349) 评论(0) 推荐(0) 编辑
摘要: 1、整体处理流程如下: 在使用select读取触摸屏设备中的数据后(即采样,压力达到一定阈值),处理些采样点后得到一个物理设备坐标点,然后用QCoreApplication的sendEvent活postEvent将其发送出去,于是Event的处理流程就开始了。 首先,QCoreApplication 阅读全文
posted @ 2016-11-10 11:13 fullnamefull 阅读(971) 评论(0) 推荐(0) 编辑