书栈网 · BookStack 本次搜索耗时 0.025 秒,为您找到 2061 个相关结果.
  • 9. 非事务场景跨链使用文档

    9. 非事务场景跨链使用文档 9.1. 中继同步合约 9.2. 合约使用方法 9.3. 中继同步进程 9. 非事务场景跨链使用文档 跨链的背景知识可以参考超级链的设计文档 超级链跨链技术 ,这里介绍一下超级链自带的跨链工具的使用方式。 9.1. 中继同步合约 合约的代码在 xuperchain/core/contractsdk/cpp/...
  • 2.1. 智能合约开发详解

    2.1. 智能合约开发详解 2.1.1. 简介 2.1.2. 准备工作 2.1.2.1. 环境要求 2.1.2.2. 环境部署 2.1.2.3. 设置环境变量 2.1.2.4. 创建合约账号 2.1.2.5. 小结 2.1.3. 快速体验 2.1.3.1. 创建合约工程 2.1.3.2. 编译合约 2.1.3.3. 部署合约 2.1.3....
  • 开发规范

    工程实践 单元测试 集成测试 代码规范 Google C++ Style Guide 格式化工具 工程实践 使用C++17,内存管理上以RAII为规范。 引入Expect Monad简化返回值错误处理。 基于C++的asio异步模块设计网络模块与线程池模块。 使用CMake构建工程 使用了asio/rocksdb/gtest/glog三...
  • Spiral Matrix II

    Spiral Matrix II 描述 分析 代码1 代码2 相关题目 Spiral Matrix II 描述 Given an integer n , generate a square matrix filled with elements from 1 to n^2 in spiral order. For example,G...
  • Maximum Product of Word Lengths

    Maximum Product of Word Lengths 描述 分析 解法1 解法2 Maximum Product of Word Lengths 描述 Given a string array words , find the maximum value of length(word[i]) * length(word[j]) ...
  • Repeated DNA Sequences

    Repeated DNA Sequences 描述 分析 解法1 简单粗暴 解法2 完美哈希 Repeated DNA Sequences 描述 All DNA is composed of a series of nucleotides abbreviated as A, C, G, and T, for example: "ACGAA...
  • Word Break

    Word Break 描述 分析 深搜 动规 相关题目 Word Break 描述 Given a string s and a dictionary of words dict, determine if s can be segmented into a space-separated sequence of one or more...
  • 3Sum

    1357 2018-07-19 《算法珠玑(C++版)》
    3Sum 描述 分析 代码 相关题目 3Sum 描述 Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0 ? Find all unique triplets in the array which gives...
  • Two Sum

    1396 2018-07-19 《算法珠玑(C++版)》
    Two Sum 描述 分析 代码 相关题目 Two Sum 描述 Given an array of integers, find two numbers such that they add up to a specific target number. The function twoSum should return indice...
  • ImportCpp pragma

    1003 2020-10-18 《Nim v1.4 Manual》
    ImportCpp pragma Namespaces Importcpp for enums Importcpp for procs @ is a special case to support a cnew operation. It is required so that the call expression is inlined direc...