书栈网 · BookStack 本次搜索耗时 0.030 秒,为您找到 2113 个相关结果.
  • Emit pragma

    786 2020-10-18 《Nim v1.4 Manual》
    Emit pragma Emit pragma The emit pragma can be used to directly affect the output of the compiler’s code generator. The code is then unportable to other code generators/backen...
  • CMake 使用简介

    CMake 使用简介 CMake 介绍 安装 快速开始 其他常用 CMake 命令 message message 命令还有其他用途,例如: set list add_library find_library target_link_libraries target_include_directories target_...
  • Windows 常见问题

    Windows 常见问题 源码构建 包含可选组件 加速 Windows 的 CUDA 构建 一个关键的安装脚本 扩展 CFFI 扩展 Cpp 扩展 安装 在 win-32 中找不到包 为什么没有 Windows 的 Python 2 包? 导入错误 用法(多进程处理) 无 if 语句保护的多进程处理错误 多进程处理错误 “损坏的管道”...
  • Configure CMake

    Configure CMake Create a CMake build script Add NDK APIs Add other prebuilt libraries Include other CMake projects Configure CMake A CMake build script is a plain text fil...
  • 使用 Xinference 接入本地模型

    使用 Xinference 接入本地模型 安装 Xinference 1. 服务器 Docker 部署 直接部署 2. 个人设备 创建并部署模型(以 Qwen-14B 模型为例) 1. WebUI 方式启动模型 2. 命令行方式启动模型 将本地模型接入 One API 将本地模型接入 FastGPT 使用 Xinference 接入...
  • Power of Two

    Power of Two 描述 分析 代码 Power of Two 描述 Given an integer, write a function to determine if it is a power of two. 分析 如果是2的幂,则二进制的所有位中,有且仅有一个1。 可以复用 "Number of 1 Bits" 中的函...
  • 广度优先搜索

    1129 2018-07-19 《算法珠玑(C++版)》
    广度优先搜索 广度优先搜索 当题目看不出任何规律,既不能用分治,贪心,也不能用动规时,这时候万能方法——搜索,就派上用场了。搜索分为广搜和深搜,广搜里面又有普通广搜,双向广搜,A*搜索等。深搜里面又有普通深搜,回溯法等。 广搜和深搜非常类似(除了在扩展节点这部分不一样),二者有相同的框架,如何表示状态?如何扩展状态?如何判重?尤其是判重,解决了这个...
  • vptr_vtable那些事

    深入浅出C++虚函数的vptr与vtable 1.基础理论 2.实现与内部结构 深入浅出C++虚函数的vptr与vtable 1.基础理论 为了实现虚函数,C ++使用一种称为虚拟表的特殊形式的后期绑定。该虚拟表是用于解决在动态/后期绑定方式的函数调用函数的查找表。虚拟表有时会使用其他名称,例如“vtable”,“虚函数表”,“虚方法表”或“...
  • Count and Say

    Count and Say 描述 分析 代码 Count and Say 描述 The count-and-say sequence is the sequence of integers beginning as follows: 1 , 11 , 21 , 1211 , 111221 , ... 1 i...
  • Increasing Triplet Subsequence

    Increasing Triplet Subsequence 描述 分析 代码 相关题目 Increasing Triplet Subsequence 描述 Given an unsorted array return whether an increasing subsequence of length 3 exists or not ...