- 博客(6)
- 收藏
- 关注
原创 常用算法
1. 快速排序#include <iostream> #include <vector> using namespace std; int partition(vector<int> &nums, int low,int high) { int key=nums[low]; while(low<high) { while(low<high && nums[hig
2017-09-16 00:45:24 186
原创 读取控制台输入的数据
Vector:#include <iostream> #include <sstream> #include <vector> using namespace std; int main() { vector<int>numbers; int enterNumber;std::string line; getline(cin, line); istringstream iss(lin
2017-03-12 19:08:49 721
原创 Something learned from leetcode (2)
21、string的sort()、compare() Anagram: 字符相同但字母顺序打乱的两个短语class Solution { public: bool isAnagram(string s, string t) { if(s.size()!=t.size()) return false; sort(s.begin(),s.end()
2016-10-15 21:27:36 343
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人