2019.6.1
2022.10.16
Tech
603
2 分钟
【字符串匹配】 Problem Link 给出 字符串 text 和 字符串列表 words, 返回所有的索引对 [i, j] 使得在索引对范围内的……
2019.6.1
2022.10.16
Tech
1076
3 分钟
不同于pipeline,parallelism需要额外的硬件资源 Instruction-Level Parallelism (ILP) Instruction-level parallelism: parallelism among instructions Pipelining is……
2019.6.1
2022.10.16
Tech
885
2 分钟
Performance Issues Longest delay determines clock period Critical path: load instruction Instruction memory → register file → ALU → data memory → register file Not feasible to vary period for different instructions Violates design principle Making the common case fast We will……
2019.5.31
2022.10.16
Tech
769
2 分钟
【动态规划】 Problem Link 给出整数数组 A,将该数组分隔为长度最多为 K 的几个(连续)子数组。分隔……
2019.5.31
2022.10.16
Tech
982
2 分钟
【图】【Map】【数组】 Problem Link 有 N 个花园,按从 1 到 N 标记。在每个花园中,你打算种下四种……
2019.5.30
2022.10.16
Tech
798
2 分钟
【数组】 Problem Link 在无限的平面上,机器人最初位于 (0, 0) 处,面朝北方。机器人可以接受下列三条指……
2019.5.29
2022.10.16
Tech
876
2 分钟
【动态规划】【背包问题】 Problem Link 有一堆石头,每块石头的重量都是正整数。 每一回合,从中选出……
2019.5.28
2022.10.16
Tech
672
2 分钟
【栈】 Problem Link 给出由小写字母组成的字符串 S,重复项删除操作会选择两个相邻且相同的字母,并……
2019.5.28
2022.10.16
Tech
805
2 分钟
【字典序】 Problem Link 给你一个正整数的数组 A(其中的元素不一定完全不同),请你返回可在 一次交……
2019.5.28
2022.10.16
Tech
2160
5 分钟
数据库系统设计介绍 系统需求分析及定义 在这个个人音乐数据库系统中,最主要的功能是 批量解……