书栈网 · BookStack 本次搜索耗时 0.020 秒,为您找到 2061 个相关结果.
  • 3. 创建合约

    3. 创建合约 3.1. 编写合约 3.2. 部署wasm合约 3.3. 部署native合约 3. 创建合约 3.1. 编写合约 源码可以参考 xuperchain/xuperunion/contractsdk/go/example/math/math.go 主要实现struct中initialize,invoke和query三个方法来...
  • CMake 指南

    CMake 指南 基本概念 常用构建选项 CMake 通用 Cocos2d-x 特有 各平台构建示例 Linux macOS iOS Android Windows 预编译库示例 CMake 帮助 CMake 指南 CMake 是一个开源的跨平台构建工具,Cocos2d-x 是一个开源的跨平台游戏引擎,两者十分契合。 Coc...
  • 练习36:更安全的字符串

    1485 2018-02-09 《笨办法学C》
    练习36:更安全的字符串 为什么C风格字符串十分糟糕 使用 bstrlib 学习使用该库 练习36:更安全的字符串 原文:Exercise 36: Safer Strings 译者:飞龙 我已经在练习26中,构建devpkg 的时候介绍了Better String 库。这个练习让你从现在开始熟悉bstring 库,并且明白C风格字...
  • CMake 使用简介

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

    Reverse Integer 描述 分析 代码 相关题目 Reverse Integer 描述 Reverse digits of an integer. Example1: x = 123, return 321 Example2: x = -123, return -321 Have you thought about thi...
  • LCA of Binary Tree

    LCA of Binary Tree 描述 分析 代码 相关题目 LCA of Binary Tree 描述 Given a binary tree, find the lowest common ancestor (LCA) of two given nodes in the tree. According to the defini...
  • Product of Array Except Self

    Product of Array Except Self 描述 分析 代码1 O(n)空间 代码2 O(1)空间 Product of Array Except Self 描述 Given an array of n integers where n > 1 , nums , return an array output such th...
  • 1.1. C++接口API

    1.1. C++接口API 1.1.1. get_object 1.1.2. put_object 1.1.3. delete_object 1.1.4. query_tx 1.1.5. query_block 1.1.6. table 1.1.6.1. 定义表格 1.1.6.2. 初始化表格 1.1.6.3. put 1.1.6.4. fi...
  • Ugly Number II

    1230 2018-07-19 《算法珠玑(C++版)》
    Ugly Number II 描述 分析 代码 相关题目 Ugly Number II 描述 Write a function to find the n -th ugly number. Ugly numbers are positive numbers whose prime factors only include 2, 3, 5...
  • Word Search

    Word Search 描述 分析 代码 Word Search 描述 Given a 2D board and a word, find if the word exists in the grid. The word can be constructed from letters of sequentially adjacent ce...