自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 资源 (2)
  • 收藏
  • 关注

原创 leet code—— 对撞指针125,344,345,11

125Input: "A man, a plan, a canal: Panama"Output: true判断一个字符串是不是回文串class Solution { public: bool isPalindrome(string s) { if ( s.length() == 0 || s.length() == 1) return true; int l = 0; i...

2018-04-30 20:09:01 319

原创 leetcode——88,215

88  合并两个有序数组方法一:直接使用sort()    打败了26.11%的人class Solution { public: void merge(vector<int>& nums1, int m, vector<int>& nums2, int n) { int index = m; for (int i = 0; i < n; i...

2018-04-30 16:21:15 114

原创 leetcode——27,26,80

27题#include <iostream> #include<string> #include<iostream> #include<vector> #include<algorithm> using namespace std; class Solution { public: int removeElement(vector&...

2018-04-30 11:01:44 124

PyQT_win-4.12.1.zip

Python可视化界面的工具

2017-07-10

pcl1.8.0配置文件

这个是最新的vc140,有了这个就不用在属性界面了配置的乱七八糟的;

2017-06-09

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除