• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
yanqi
博客园 | 首页 | 新随笔 | 新文章 | 联系 | 订阅 订阅 | 管理
上一页 1 2 3 4 5

2015年11月13日

LeetCode(228) Summary Ranges
摘要: Given a sorted integer array without duplicates, return the summary of its ranges.For example, given[0,1,2,4,5,7], return["0->2","4->5","7"].class Sol... 阅读全文
posted @ 2015-11-13 15:55 yanqi 阅读(123) 评论(0) 推荐(0)
 
LeetCode(219) Contains Duplicate II
摘要: 题意:Given an array of integers and an integerk, find out whether there are two distinct indicesiandjin the array such thatnums[i] = nums[j]and the diff... 阅读全文
posted @ 2015-11-13 10:29 yanqi 阅读(147) 评论(0) 推荐(0)
 
 

2015年11月3日

Subsets
摘要: 我的思路:二进制位上有1则加class Solution {public: vector> subsets(vector& nums) { vector> res; sort(nums.begin(),nums.end()); for(int i=0;... 阅读全文
posted @ 2015-11-03 17:51 yanqi 阅读(266) 评论(0) 推荐(0)
 
Permutation Sequence
摘要: class Solution {public: int num=0; bool isgo=true;public: string getPermutation(int n, int k) { vector nums; for(int i=1;i> res; ... 阅读全文
posted @ 2015-11-03 14:11 yanqi 阅读(157) 评论(0) 推荐(0)
 
全排列 Permutations
摘要: class Solution {public: vector> permute(vector& nums) { sort(nums.begin(),nums.end()); vector> res; vector path; trackb... 阅读全文
posted @ 2015-11-03 12:04 yanqi 阅读(115) 评论(0) 推荐(0)
 
 

2015年11月2日

N皇后回溯解法 leetcode N-Queens
摘要: class Solution {public: vector > solveNQueens(int n) { vector> xxx; vector > res; vector com; int len=n; c3(res,com,n,len... 阅读全文
posted @ 2015-11-02 19:48 yanqi 阅读(231) 评论(0) 推荐(0)
 
 

2015年10月29日

LeetCode(17) Letter Combinations of a Phone Number
摘要: class Solution {public: map coll; vector vec;public: vector letterCombinations(string digits) { if(digits.length()==0) return vec... 阅读全文
posted @ 2015-10-29 13:24 yanqi 阅读(115) 评论(0) 推荐(0)
 
 

2015年10月27日

二叉树遍历 空间复杂度为O(1)
摘要: http://blog.csdn.net/mxw976235955/article/details/39829973http://www.tuicool.com/articles/zA7NJbj/** *morris中序遍历二叉树 */void morris_inorder(BiTree T) { ... 阅读全文
posted @ 2015-10-27 10:54 yanqi 阅读(892) 评论(0) 推荐(0)
 
归并排序 空间复杂度为O(1)的做法
摘要: #include #include using namespace std; void print(int *arr, int start, int end) { for (int i = start; i arr[j]) { k = j; key = arr[j]; whi... 阅读全文
posted @ 2015-10-27 10:52 yanqi 阅读(2177) 评论(0) 推荐(0)
 
 
上一页 1 2 3 4 5

公告


博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3