书栈网 · BookStack 本次搜索耗时 0.023 秒,为您找到 2061 个相关结果.
  • ZigZag Conversion

    ZigZag Conversion 描述 分析 代码 ZigZag Conversion 描述 The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display t...
  • Implement Stack using Queues

    Implement Stack using Queues 描述 分析 代码 相关题目 Implement Stack using Queues 描述 Implement the following operations of a stack using queues. push(x) — Push element x onto sta...
  • Evaluate Reverse Polish Notation

    Evaluate Reverse Polish Notation 描述 分析 递归版 迭代版 Evaluate Reverse Polish Notation 描述 Evaluate the value of an arithmetic expression in Reverse Polish Notation. Valid opera...
  • Min Stack

    1093 2018-07-19 《算法珠玑(C++版)》
    Min Stack 描述 分析 代码 Min Stack 描述 Design a stack that supports push, pop, top, and retrieving the minimum element in constant time. push(x) — Push element x onto stack. po...
  • Reorder List

    Reorder List 描述 分析 代码 Reorder List 描述 Given a singly linked list L:L0→L1→⋯→Ln−1→LnL: L0 \rightarrow L_1 \rightarrow \cdots \rightarrow L{n-1} \rightarrow Ln L : L ​ 0 ...
  • Next Permutation

    1301 2018-07-19 《算法珠玑(C++版)》
    Next Permutation 描述 分析 代码 相关题目 Next Permutation 描述 Implement next permutation, which rearranges numbers into the lexicographically next greater permutation of numbers. I...
  • 计数排序

    计数排序 (Counting Sort)是一种O(n)的排序算法,其思路是开一个长度为maxValue-minValue+1 的数组,然后 分配。扫描一遍原始数组,以当前值-minValue作为下标,将该下标的计数器增1。 收集。扫描一遍计数器数组,按顺序把值收集起来。举个例子,nums=[2, 1, 3, 1, 5] , 首先扫描一遍获取最小值和最大...
  • Flatten Binary Tree to Linked List

    Flatten Binary Tree to Linked List 描述 分析 递归版1 递归版2 Flatten Binary Tree to Linked List 描述 Given a binary tree, flatten it to a linked list in-place. For example, Given ...
  • Emit 编译指示

    Emit 编译指示 Emit 编译指示 emit 编译指示可以直接影响编译器代码生成器的输出。这样一来,代码将无法移植到其他代码生成器/后端,非常不鼓励使用这种方法。然而,它对于实现与 C++ 或 Objective C 代码的接口非常有用。 示例: {. emit : """ static int cvariable = 420; ...
  • CMake 使用简介

    CMake 使用简介 CMakeLists 的生成和使用 生成 使用 CMakeLists 常用编译指令 查找编译头文件 生成 target(执行文件) 链接库文件 其他命令 CMakeLists 使用示例 结语 CMake 使用简介 CMake 是一个跨平台的构建工具,可根据需要输出各种各样的 Makefile 或者 Projec...