从外往里 reduction orderimage.png normal orderM N Pleft to right 先直接把N给M applicative orderM...
从外往里 reduction orderimage.png normal orderM N Pleft to right 先直接把N给M applicative orderM...
by value When calling a new function or procedure, all arguments need to be input to th...
Binary Search Tree to Greater Sum Tree根据题目给出的例子,相当于要做一个reverse sort,由于得到sorted array的是i...
Largest Rectangle in Histogrambrute force O(n^2) solution2: Divide and comque,类似merge s...
Intersection of Two Arrays求两个array的intersection,恰好昨天刚想了想这个问题,一个方法是A的每个元素和B的每个元素做对比,这种情况...
[TOC] direct address 适用于数量小且没有重复的key的情况都是O(1)时间 hash table with direct address, key k s...
Longest Substring Without Repeating Characters虽然这是一个hash table的题目,但是我的第一反应是用一个长为26的arra...
sort list这道题实在是有点繁琐,要求sort一个LinkedList,并且runtime是O(n lg n),space complexity必须是constant。...
今天主要刷hash table的题目,主要按照frequency从高到低的顺序。 two sum: 使用HashMap 3 sum: 一开始以为是简单的for loop➕tw...
总结:TreeMap有顺序,HashMap无顺序,LinkedHashMap的顺序与插入顺序相同 HashMap LinkedMap 元素的排列顺序与插入顺序相同 TreeM...
Approach 1: sort sort the array using merge sort (n log n) return the kth largest eleme...
mongod 后台启动mongodb服务器,类似于runservermongod 进入与mongodb的交互shellmongo admin --eval "db...
在本地运行server,一般在app.js里面加上这个语句 8080是端口号。在对应文件夹的文件中输入 node app.js,服务器就会开始运行。要注意的一点就是,当想要...
最近在学校选了一门computer vision的课,课后的作业需要用PyTorch去完成,因为之前对这个工具没有任何经验,所以是从头学起,虽然现在也还是初学者的状态,但比起...