1. 题目 Write a function that takes an unsigned integer and returns the number of ’1′ bits it has (also kn…
分类:LeetCode
170. Two Sum III - Data structure design
/* Date: March 21, 2016 170. Two Sum III - Data structure design [My Submissions](https://leetcode.com/problem…
60.Permutation Sequence-Leetcode
基础回顾 String 头文件中必须包括<string> string的声明初始化 string s1 = "abcdefg"; //初始化方式1 string s2("abcdefg"); //初始化方式2…
Leetcode之9-回文数(Palindrome Number)
前言 个人网站 公众号: 北京程序猿, 网站 : https://yaml.vip 算法题 题干 判断一个整数是否是回文数。回文数是指正序(从左向右)和倒序(从右向左)读都是一样的整数。 示例 示例 1: 输入: 121…
Leetcode 301. Remove Invalid Parentheses
Remove the minimum number of invalid parentheses in order to make the input string valid. Return all possible …
[LeetCode By Go 13]637. Average of Levels in Binary Tree
题目 Given a non-empty binary tree, return the average value of the nodes on each level in the form of an array.…
86. Partition List
86. Partition List 题目 Given a linked list and a value x, partition it such that all nodes less than x come bef…
[LeetCode] Maximum Product of Three Numbers 三个数字的最大乘积
Given an integer array, find three numbers whose product is maximum and output the maximum product. Exa…
[LeetCode] Find the Derangement of An Array 找数组的错排
In combinatorial mathematics, a derangement is a permutation of the elements of a set, such that no ele…
力扣(LeetCode)452
题目地址:https://leetcode-cn.com/probl…题目描述:在二维空间中有许多球形的气球。对于每个气球,提供的输入是水平方向上,气球直径的开始和结束坐标。由于它是水平的,所以y坐标并不重要…
22. 括号生成(Swift版)
一、题目 给出 n 代表生成括号的对数,请你写出一个函数,使其能够生成所有可能的并且有效的括号组合。 例如: 给出 n = 3,生成结果为: [ "((()))", "(()())", "(())()", "()(())…
14. 子串问题
字串问题有个通用的滑动窗口算法,时间复杂度O(n2) 其中关键: 窗口大小不固定:构造合适的count来控制窗口的滑动。 窗口大小固定:使用left、right控制窗口移动。 使用HashTable控制记录字符出现情况。…