数据结构和算法
yes小宇
热爱互联网行业,关注行业动态,抗压能力强学习能力强。对新技术充满好奇,渴望不断探索提高。工作态度认真负责,具有团队合作精神。
展开
-
以Lintcode的backPackII为例,学习动态数组vector的使用
area.txt文件中数据为7722295099value.txt9222874690backPackII.cpp的代码为#include <bits/stdc++.h>using namespace std;int backPackII(int m, vector<int> &A, vector<int>...原创 2018-04-30 20:36:08 · 215 阅读 · 0 评论 -
【Lintcode】checkSumOfSquareNumbers巧用无序集合unordered_set
#include <bits/stdc++.h>#include <unordered_set>using namespace std;bool judgeSquareSum(int c) { unordered_set<int> s; for (int i = 0; i <= sqrt(c); ++i) { ...原创 2018-04-30 20:53:01 · 166 阅读 · 0 评论 -
Lintcode幸运数字8
#include <bits/stdc++.h>using namespace std;int luckyNumber(int n) { // Write your code here int sum = 0; for(int i = 0; i <= n; i++){ int g = i; while(g!=0){...原创 2018-05-01 10:30:05 · 651 阅读 · 0 评论