当然
求1+2+3+...+n时间限制:1秒 空间限制:32768K 题目描述 求1+2+3+...+n,要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语...
当然
求1+2+3+...+n时间限制:1秒 空间限制:32768K 题目描述 求1+2+3+...+n,要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语...
问题描述 给你一个长度为的01串,定义“答案”=该串中最长的连续1的长度。现有K次机会将其中的某个0改为1,现在求最大可能“答案”。 解题思路 遍历这个数,将为0的位置pus...
问题描述 一张包含个节点、条边的无向连通图,其中,节点从1到进行编号,每条边的长度均为1。假设从1号节点出发并打算遍历图中所有节点,那么所需要的总路程至少是多少? 解题思路 ...
问题描述 将一组非负整数组成的数组作为柱状图中每个柱子的高度值,且每个柱子宽度为1。找出这个柱状图中所包含矩形的最大面积。 解题思路 使用分治法,最大矩形面积只可能有三种情况...
问题描述 100元换零钱1元、2元、5元、10元、20元、50元有多少种组合方案? 解题思路 使用动态规划来求解,使用表示用不超过第个面值(从小到大排序)的零钱来表示的所有组...
时间限制:1秒 空间限制:32768K 题目描述 There are N children standing in a line. Each child is assigne...
2.1 概率论基础 全概率公式 贝叶斯法则(Bayes' theorem) 贝叶斯决策理论(Bayesian decision theory) 2.2 信息论基础 熵(ent...
1.1 基本概念 自然语言指人类使用的语言,如汉语、英语等。 语言的两个基本属性:文字和声音。 自然语言处理 或称自然语言理解(Natural Language Unders...
时间限制:1秒 空间限制:32768K 题目描述 Given an array of integers, every element appears twice except...
时间限制:1秒 空间限制:32768K 题目描述 Given an array of integers, every element appears three times ...
时间限制:1秒 空间限制:32768K 题目描述 A linked list is given such that each node contains an additio...
时间限制:1秒 空间限制:32768K 题目描述 Given a string s and a dictionary of words dict, determine if ...
时间限制:1秒 空间限制:32768K 题目描述 Given a string s and a dictionary of words dict, add spaces in...
时间限制:1秒 空间限制:32768K 题目描述 Given a linked list, determine if it has a cycle in it.Follow ...
时间限制:1秒 空间限制:32768K 题目描述 Given a linked list, return the node where the cycle begins. I...
时间限制:1秒 空间限制:32768K 题目描述 Given a singly linked list L: L 0→L 1→…→L n-1→L n,reorder it t...
一、HMM建模 HMM参数: 二、HMM的3个假设 (一)马尔科夫假设 (二)观测独立性假设 (三)不变性假设 转移矩阵不随时间变化。 三、HMM的3个问题 (一)概率计算/...
时间限制:1秒 空间限制:32768K 题目描述 Given a binary tree, return the preorder traversal of its node...
时间限制:1秒 空间限制:32768K 题目描述 Given a binary tree, return the postorder traversal of its nod...
一、单成分单变量高斯模型 二、单成分多变量高斯模型 若协方差矩阵为对角矩阵且对角线上值相等,两变量高斯分布的等值线为圆形。 若协方差矩阵为对角矩阵且对角线上值不等,两变量高斯...