240 发简信
IP属地:北京
  • Resize,w 360,h 240
    深入理解flutter的编译原理与优化

    问题背景 对于开发者而言,什么是Flutter?它是用什么语言编写的,包含哪几部分,是如何被编译,运行到设备上的呢?Flutter如何做到Deb...

  • Programming Assignment 4 Checklist: 8 Puzzle

    典型的8 puzzle如下: 算法设计参照A搜索算法,即使不了解A搜索算法,题目也已经将解法解释的很具体了。 Best-first search...

  • Randomized priority queue

    Describe how to add the methods \mathtt{sample()}sample() and \mathtt{de...

  • Dynamic median

    Design a data type that supports insert in logarithmic time, find-the-me...

  • Quicksort

    Quicksort是一个分而治之的算法,它根据主元把一个大数组分成2个小数组:其中1个数组的元素要比主元小,另一个要比主元大。Quicksort...

  • Merging with smaller auxiliary array

    Suppose that the subarray a[0] to a[n-1] is sorted and the subarray a[n]...

  • Programming Assignment 2: Deques and Randomized Queues

    实现一个泛型的双端队列和随机化队列,用数组和链表的方式实现基本数据结构,主要介绍了泛型和迭代器。 Dequeue. 实现一个双端队列,它是栈和队...

  • Resize,w 360,h 240
    Programming Assignment 1:Percolation

    渗滤:percolation渗滤是一个由绝缘体和金属随机分布的复杂系统。那么它的金属分布在什么情况下会导致它是一个导体。科学家定义了一个抽象的被...