240 发简信
IP属地:浙江
  • ipfs pinner 内存管理

    ipfs如何进行内存管理 多个文件会有相同的子块,如何删除一个文件时,保留未删除文件的相同子块呢 如果是直接pin,那么就在directpin的...

  • hashicorp/2qcache ipfs

    LRU缓存的缺点 嗯,在一些文件系统缓存中实现的标准的LRU淘汰算法是有一些缺点的。例如,它们对扫描读模式是没有抵抗性的。但你一次顺序读取大量的...

  • 火柴盒

    func makesquare(nums []int) bool {n := len(nums)if n < 4 || _sum(nums) ...

  • 给n*3涂方案的个数

    // 二维动态规划的难题啊啊啊。func numOfWays(n int) int {// 所有满足条件的一行的可能性// 0表示红,1表示蓝,...

  • K个逆序对数组

    public class Solution {public int kInversePairs(int n, int k) {int[][] d...

  • 最大bst子树

    func largestBSTSubtree(root *TreeNode) int {ret, _, _, _ := ls(root)retu...

  • 路径总和

    func hasPathSum(root TreeNode, sum int) bool {if root == nil {return fal...

  • 石子问题

    func stoneGame(piles []int) bool {dp := make([][]int, len(piles))for i :...

  • 交错字符串

    func isInterleave(s1 string, s2 string, s3 string) bool {n, m, t := len(...