上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 44 下一页
摘要: LeetCode 53. Maximum Subarray (最大子序和) 题目 链接 https://leetcode-cn.com/problems/maximum-subarray 问题描述 给定一个整数数组 nums ,找到一个具有最大和的连续子数组(子数组最少包含一个元素),返回其最大和。 阅读全文
posted @ 2020-02-11 22:06 cheng102e 阅读(85) 评论(0) 推荐(0) 编辑
摘要: LeetCode 461. Hamming Distance (汉明距离) 题目 链接 https://leetcode-cn.com/problems/hamming-distance 问题描述 两个整数之间的汉明距离指的是这两个数字对应二进制位不同的位置的数目。 给出两个整数 x 和 y,计算它 阅读全文
posted @ 2020-02-11 20:24 cheng102e 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 448. Find All Numbers Disappeared in an Array(找到所有数组中消失的数字) 链接 https://leetcode cn.com/problems/find all numbers disappeared in an array 题目 给定一个范围在 1 阅读全文
posted @ 2020-02-11 20:05 cheng102e 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 976. Largest Perimeter Triangle(三角形的最大周长) 链接 https://leetcode cn.com/problems/largest perimeter triangle 题目 给定由一些正数(代表长度)组成的数组 A,返回由其中三个长度组成的、面积不为零的三角 阅读全文
posted @ 2020-02-05 11:17 cheng102e 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 1295. Find Numbers with Even Number of Digits(统计位数为偶数的数字) 链接 https://leetcode cn.com/problems/find numbers with even number of digits 题目 给你一个整数数组 nums 阅读全文
posted @ 2020-02-04 11:32 cheng102e 阅读(123) 评论(0) 推荐(0) 编辑
摘要: LeetCode 374. Guess Number Higher or Lower(猜数字大小) 题目 链接 https://leetcode-cn.com/problems/guess-number-higher-or-lower 问题描述 猜数字游戏的规则如下: 每轮游戏,我都会从 1 到 n 阅读全文
posted @ 2020-02-03 20:20 cheng102e 阅读(105) 评论(0) 推荐(0) 编辑
摘要: LeetCode 278. First Bad Version(第一个错误的版本) 题目 链接 https://leetcode-cn.com/problems/first-bad-version 问题描述 你是产品经理,目前正在带领一个团队开发新的产品。不幸的是,你的产品的最新版本没有通过质量检测 阅读全文
posted @ 2020-02-03 20:12 cheng102e 阅读(100) 评论(0) 推荐(0) 编辑
摘要: LeetCode 35. Search Insert Position (搜索插入位置) 题目 链接 https://leetcode-cn.com/problems/search-insert-position/ 问题描述 给定一个排序数组和一个目标值,在数组中找到目标值,并返回其索引。如果目标值 阅读全文
posted @ 2020-02-03 13:46 cheng102e 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 查找算法 二分查找 标题 二分查找也称折半查找(Binary Search),它是一种效率较高的查找方法。但是,折半查找要求线性表必须采用顺序存储结构,而且表中元素按关键字有序排列。 过程 首先,假设表中元素是按升序排列,将表中间位置记录的关键字与查找关键字比较,如果两者相等,则查找成功;否则利用中 阅读全文
posted @ 2020-02-03 13:08 cheng102e 阅读(198) 评论(0) 推荐(0) 编辑
摘要: LeetCode 27. Remove Element (移除元素) 题目 链接 https://leetcode-cn.com/problems/remove-element 问题描述 给你一个数组 nums 和一个值 val,你需要 原地 移除所有数值等于 val 的元素,并返回移除后数组的新长 阅读全文
posted @ 2020-02-02 21:17 cheng102e 阅读(105) 评论(0) 推荐(0) 编辑
上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 44 下一页