摘要:
你有一套活字字模 tiles,其中每个字模上都刻有一个字母 tiles[i]。返回你可以印出的非空字母序列的数目。 注意:本题中,每个活字字模只能使用一次。 案例: 输入:"AAB" 输出:8 解释:可能的序列为 "A", "B", "AA", "AB", "BA", "AAB", "ABA", " 阅读全文
摘要:
给出第一个词 first 和第二个词 second,考虑在某些文本 text 中可能以 "first second third" 形式出现的情况,其中 second 紧随 first 出现,third 紧随 second 出现。 对于每种这样的情况,将第三个词 "third" 添加到答案中,并返回答 阅读全文
摘要:
给你两个字符串 a 和 b ,它们长度相同。请你选择一个下标,将两个字符串都在 相同的下标 分割开。由 a 可以得到两个字符串: aprefix 和 asuffix ,满足 a = aprefix + asuffix ,同理,由 b 可以得到两个字符串 bprefix 和 bsuffix ,满足 b 阅读全文
摘要:
提示:这个题目比较简单,只需要找到待断处的前一个节点就行, 题目描述: 给你一个链表的头节点 head ,旋转链表,将链表每个节点向右移动 k 个位置。 案例: 输入:head = [1,2,3,4,5], k = 2 输出:[4,5,1,2,3] 输入:head = [0,1,2], k = 4 阅读全文
摘要:
1. CRF : 条件随机场,一种用来标记和切分序列化数据的统计模型,主要用作语音识别和文本识别,前提是有一个已经标记了的观察序列。 2. 造成过拟合的原因有两个:第一是:训练数据不足,第二个是:训练过度导致模型非常的复杂,泛化能力差。 3. 降低过拟合的方法:正则化方法,减少参数量,增大训练数据集 阅读全文
摘要:
题目描述: #include <iostream> using namespace std; class Solution { public: bool isPalindrome(long long x) { long long temp = x, reX = 0; if(x < 0 || (x ! 阅读全文
摘要:
问题描述: #include <iostream> #include <stdlib.h> #include <string> #include <string.h> #include <stdio.h> using namespace std; class Solution { public: s 阅读全文
摘要:
题目描述: #include <iostream> #include <cstdlib> #include <cstring> #include <unordered_map> using namespace std; class Solution { public: int lengthOfLon 阅读全文
摘要:
题目描述: #include <iostream> #include <vector> #include <map> using namespace std; struct ListNode { int val; ListNode *next; ListNode() : val(0), next(N 阅读全文
摘要:
/*题目要求: 给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 target 的那 两个 整数,并返回它们的数组下标。 你可以假设每种输入只会对应一个答案。但是,数组中同一个元素在答案里不能重复出现。 你可以按任意顺序返回答案。 示例: 输入:nums = 阅读全文