92. 反转链表 II https://leetcode cn.com/problems/reverse linked list ii/ | 难度 | 完成日期 | 耗时 | 提交次数 | | | | | | | 中等 | 2020 1 16 | 1小时 | 1 | 问题描述 反转从位置 m 到 n ...
分类:
其他好文 时间:
2020-01-16 22:16:54
阅读次数:
64
https://pintia.cn/problem-sets/12/problems/346 这个程序的算法不难,因为没有学透标准输入和输出,特别是gets()函数。如果不用getchar()读取多余的'\n',程序就会运行错误。 1 #include <stdio.h> 2 #include <s ...
分类:
其他好文 时间:
2020-01-16 21:48:57
阅读次数:
97
1079 延迟的回文数 (20分) https://pintia.cn/problem-sets/994805260223102976/problems/994805261754023936 1 #include <cstdio> 2 #include <cstring> 3 #include <s ...
分类:
其他好文 时间:
2020-01-16 21:42:51
阅读次数:
70
83. 删除排序链表中的重复元素 https://leetcode cn.com/problems/remove duplicates from sorted list/ | 难度 | 完成日期 | 耗时 | 提交次数 | | | | | | | 简单 | 2020 1 16 | 0.5小时 | 2 ...
分类:
编程语言 时间:
2020-01-16 19:21:27
阅读次数:
79
原题链接在这里:https://leetcode.com/problems/24-game/ 题目: You have 4 cards each containing a number from 1 to 9. You need to judge whether they could operate ...
分类:
其他好文 时间:
2020-01-16 14:51:19
阅读次数:
97
A binary watch has 4 LEDs on the top which represent the hours (0-11), and the 6 LEDs on the bottom represent the minutes (0-59). Each LED represents ...
分类:
其他好文 时间:
2020-01-16 14:44:07
阅读次数:
73
原题链接在这里:https://leetcode.com/problems/campus-bikes/ 题目: On a campus represented as a 2D grid, there are N workers and M bikes, with N <= M. Each worke ...
分类:
其他好文 时间:
2020-01-16 14:11:58
阅读次数:
74
对在频域计算FIR自适应滤波器,同时避免使用长滤波器时产生的大延迟的技术进行详细的分解,也就是通常所说的PBFDAF技术,有的地方也叫做MDF。这个技术是很多频域自适应滤波器的基础。也是困惑很多人的地方。这里分享出技术的细节,自认为写的比直接看论文或者相应的资料好懂一些。欢迎大家评判 ...
分类:
其他好文 时间:
2020-01-16 01:08:19
阅读次数:
84
来源 https://leetcode cn.com/problems/longest substring without repeating characters/ 题目描述 给定一个字符串,请你找出其中不含有重复字符的?最长子串?的长度。 示例?1: 输入: "abcabcbb" 输出: 3 解 ...
分类:
编程语言 时间:
2020-01-15 19:47:02
阅读次数:
82
来源 https://leetcode cn.com/problems/add two numbers/ 题目描述 给出两个?非空 的链表用来表示两个非负的整数。其中,它们各自的位数是按照?逆序?的方式存储的,并且它们的每个节点只能存储?一位?数字。 如果,我们将这两个数相加起来,则会返回一个新的链 ...
分类:
编程语言 时间:
2020-01-15 17:56:13
阅读次数:
85