书栈网 · BookStack 本次搜索耗时 0.028 秒,为您找到 85158 个相关结果.
  • 7.1 介绍

    7.1 介绍 7.1 介绍 在上一章中,我们介绍了比特币交易的基本要素,并且了解了最常见的交易脚本类型,即P2PKH脚本。在本章中,我们将介绍更高级的脚本,以及如何使用它来构建复杂条件的交易。 首先,我们将了解多重签名multisignature脚本。接下来,我们将查看第二种最常见的交易脚本支付脚本哈希Pay-to-Script-Hash,它开启...
  • Construct Binary Tree from Inorder and Postorder Traversal

    Construct Binary Tree from Inorder and Postorder Traversal 描述 分析 代码 相关题目 Construct Binary Tree from Inorder and Postorder Traversal 描述 Given inorder and postorder travers...
  • Sum Root to Leaf Numbers

    Sum Root to Leaf Numbers 描述 分析 代码 Sum Root to Leaf Numbers 描述 Given a binary tree containing digits from 0-9 only, each root-to-leaf path could represent a number. An ex...
  • 排序

    " level="1"> 冒泡排序 基本思想: 选择排序算法 基本思想: 插入排序算法 基本思想: 希尔排序算法 基本思想: 堆排序算法 基本思想: 快速排序算法 基本思想: 归并排序算法 基本思想: 各种算法的时间复杂度等性能比较 " class="reference-link"> 冒泡排序 基本思想: 比较相...
  • 36. Valid Sudoku

    题目描述(中等难度) 解法一 暴力解法 解法二 总 题目描述(中等难度) 一个 9 * 9 的数独的棋盘。判断已经写入数字的棋盘是不是合法。需要满足下边三点, 每一行的数字不能重复 每一列的数字不能重复 9 个 3 * 3 的小棋盘中的数字也不能重复。 只能是 1 - 9 中的数字,不需要考虑数独最后能不能填满。 解...
  • Insertion Sort List

    Insertion Sort List 描述 分析 代码 相关题目 Insertion Sort List 描述 Sort a linked list using insertion sort. 分析 无 代码 // Insertion Sort List // 时间复杂度O(n^2),空间复杂度O(1) public...
  • 34. Find First and Last Position of Element in Sorted Array

    题目描述(中等难度) 解法一 线性扫描 解法二 二分查找 解法三 总 题目描述(中等难度) 找到目标值的第一次出现和最后一次出现的位置,同样要求 log ( n ) 下完成。 先分享 leetcode 提供的两个解法。 解法一 线性扫描 从左向右遍历,一旦出现等于 target 的值就结束,保存当前下标。如果从左到右没有找到 t...
  • Maximal Square

    Maximal Square Question Problem Statement Example 题解 Java 源码分析 复杂度分析 Follow up Reference Maximal Square Question leetcode: Maximal Square | LeetCode OJ lintcode: M...
  • Longest Increasing Subsequence

    Longest Increasing Subsequence 描述 解法1 动规 解法2 Insert Position Longest Increasing Subsequence 描述 Given an unsorted array of integers, find the length of longest increasing s...
  • GEOHASH

    GEOHASH key member [member …] 返回值 代码示例 GEOHASH key member [member …] 可用版本: >= 3.2.0 时间复杂度: 寻找每个位置元素的复杂度为 O(log(N)) , 其中 N 为给定键包含的位置元素数量。 返回一个或多个位置元素的 Geohash 表示。 返回值...