码迷,mamicode.com
首页 >  
搜索关键字:solution upgrade    ( 13024个结果
How To : Upgrade 11.2.0.2.0 to 12.1.0.1.0
How To : Upgrade 11.2.0.2.0 to 12.1.0.1.0 Posted on August 22, 2015 by baironnie it’s a little bit long time since my last post. though i have some no ...
分类:其他好文   时间:2021-04-08 13:10:06    阅读次数:0
二叉树——102. 二叉树的层序遍历
二叉树——102. 二叉树的层序遍历 题目: 思路: 就是层序遍历,一层层扫下去,然后通过队列去实现,一个队列先暂存这一层的所有结点,然后另一个队列通过push_back的方式,实现从左到右的访问。 代码: class Solution { public: vector<vector<int>> l ...
分类:其他好文   时间:2021-04-08 12:59:26    阅读次数:0
删除有序数组中的重复项II
#题目描述 给你一个有序数组 nums ,请你原地删除重复出现的元素,使每个元素最多出现两次,返回删除后数组的新长度。 不要使用额外的数组空间,你必须在原地修改输入数组 并在使用**O(1)**额外空间的条件下完成。 80. 删除有序数组中的重复项 II 难度:简单 #题解 直接用双指针。slow指 ...
分类:编程语言   时间:2021-04-07 11:44:26    阅读次数:0
剑指 Offer 03. 数组中重复的数字
题解 直接遍历一遍数组,如果遇到重复的数字直接返回就可以了,如果不存在返回-1,只需要在遍历的过程中使用一个集合存储我们遇到过的数字,方便后续判定 代码如下 class Solution { public int findRepeatNumber(int[] nums) { Set<Integer> ...
分类:编程语言   时间:2021-04-07 11:02:18    阅读次数:0
二分查找, Binary Search
class Solution { public: int searchInsert(vector<int> &nums, int target) { int low = 0; int high = nums.size() - 1; //为了严谨 <= while (low <= high) { in ...
分类:其他好文   时间:2021-04-07 10:57:40    阅读次数:0
合并两个有序数组
#题目描述 给你两个有序整数数组 nums1 和 nums2,请你将 nums2 合并到 nums1 中,使 nums1 成为一个有序数组。 初始化 nums1 和 nums2 的元素数量分别为 m 和 n 。你可以假设 nums1 的空间大小等于 m + n,这样它就有足够的空间保存来自 nums ...
分类:编程语言   时间:2021-04-07 10:33:58    阅读次数:0
Ubuntu server vim复制到系统剪贴板
阿里云Ubuntu Server 20.04 apt-get update -y apt-get upgrade -y apt-get install -y xorg-dev apt-get install -y libgtk2.0-dev apt-get install -y vim vim-sc ...
分类:系统相关   时间:2021-04-06 14:36:20    阅读次数:0
LeetCode第235场周赛题解
LeetCode第235场周赛题解 截断句子 按照题目要求模拟即可,把单词读入到vector中,然后按要求拼接即可 class Solution { public: string truncateSentence(string s, int k) { vector<string> a; string ...
分类:其他好文   时间:2021-04-06 14:34:00    阅读次数:0
LeetCode1
解法1 class Solution: def twoSum(self, nums: List[int], target: int) -> List[int]: dit = {} for i in range(len(nums)): other = target - nums[i] if other ...
分类:其他好文   时间:2021-04-06 14:26:04    阅读次数:0
LCP 17. 速算机器人
仅供自己学习 思路: 直接遍历判断即可 class Solution { public: int calculate(string s) { int n=s.length(); int x=1,y=0; for(int i=0;i<n;++i){ if(s[i]=='A') x = 2*x+y; e ...
分类:其他好文   时间:2021-04-06 14:14:23    阅读次数:0
13024条   上一页 1 ... 15 16 17 18 19 ... 1303 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!