书栈网 · BookStack 本次搜索耗时 0.027 秒,为您找到 85158 个相关结果.
  • 1.1 旋转字符串

    1.1 旋转字符串 题目描述 分析与解法 解法一:暴力移位法 解法二:三步反转法 举一反三 1.1 旋转字符串 题目描述 给定一个字符串,要求把字符串前面的若干个字符移动到字符串的尾部,如把字符串“abcdef”前面的2个字符’a’和’b’移动到字符串的尾部,使得原字符串变成字符串“cdefab”。请写一个函数完成此功能,要求对长度为n...
  • Sort List

    Sort List Question 题解1 - 归并排序(链表长度求中间节点) 源码分析 复杂度分析 题解2 - 归并排序(快慢指针求中间节点) C++ Java 源码分析 复杂度分析 题解3 - 归并排序(自底向上) C++ 复杂度分析 Reference Sort List Question leetcode: ...
  • Reorder List

    Reorder List Question Problem Statement " level="3">题解1 - 链表长度(TLE) C++ - TLE 源码分析 复杂度分析 题解2 - 反转链表后归并 C++ Java 源码分析 复杂度分析 Reference Reorder List Question leet...
  • Rotate Array

    Rotate Array 描述 分析 解法1 三轮reverse Rotate Array 描述 Rotate an array of n elements to the right by k steps. For example, with n = 7 and k = 3 , the array [1,2,3,4,5,6,7] ...
  • Convert Sorted List to Binary Search Tree

    Convert Sorted List to Binary Search Tree 描述 分析 分治法,自顶向下 自底向上 相关题目 Convert Sorted List to Binary Search Tree 描述 Given a singly linked list where elements are sorted in a...
  • Sort Colors

    Sort Colors 描述 分析 代码1 代码2 代码3 相关题目 Sort Colors 描述 Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, w...
  • 2 Sum

    Two Sum Question Problem Statement 题解1 - 哈希表 Python C++ Java 源码分析 复杂度分析 题解2 - 排序后使用两根指针 C++ 源码分析 复杂度分析 Two Sum Tags: Array, Hash Table, Easy Question leetcode: ...
  • 语句和表达式

    语句和表达式 语句和表达式 Nim使用通用语句/表达式范例:与表达式相比,语句不会产生值。 但是,有些表达式是语句。 语句分为 简单语句 和 复杂语句 。 简单语句是不能包含像赋值,调用或者 return 的语句; 复杂语句可以包含其它语句。 为了避免 dangling else问题, 复杂语句必须缩进。 细节可以在语法中找到。
  • contextBridge

    contextBridge 词汇表 Main World Isolated World 方法 contextBridge.exposeInMainWorld(apiKey, api) 用法 应用开发接口(API) API Functions 参数 / 错误 / 返回类型支持 暴露Node Global Symbols conte...
  • 4. 建造者模式

    2219 2019-11-25 《图说设计模式》
    4. 建造者模式 4.1. 模式动机 4.2. 模式定义 4.3. 模式结构 4.4. 时序图 4.5. 代码分析 4.6. 模式分析 4.7. 实例 4.8. 优点 4.9. 缺点 4.10. 适用环境 4.11. 模式应用 4.12. 模式扩展 4.13. 总结 4. 建造者模式 4.1. 模式动机 无论是在现实世界...