梦曦·花已落

Results 40 comments of 梦曦·花已落

Every time I open recaf, it will prompt that this is my first time to open it. Is this a bug?(Since version 2.0.0) ![KBI(M}C)8)E2{@}YP(Z(S5F](https://user-images.githubusercontent.com/32810896/84275919-428f7a80-ab64-11ea-99eb-44cb7bde5ccd.png)

Looking forward to the push of this feature

After using the new version for so long, I find that I still prefer the old version's page layout. The new version lacks many of the features that the old...

这里的k的判断其实是有问题的吧?k==0只是代表没有了中转的机会,并不是不可达(还可直接从起点到终点),所以应该将if (k == 0)改为if (k < 0)吧?

另外其实还有另外一种思路,即倒着过来求,将dp定义为dp(int start, int k),即当前中转次数为k时,从start到dst的最短路径,对应的dp要更改为 ```java // 在中转次数为k的情况下从start到dst的最短路径 public int dp(int start, int k) { if (start == dst) { return 0; } if (k > this.k) { return -1; }...

最后的那个find的优化的gif图是不是错了?将parent[x]=parent[parent[x]]之后,x不应该是原来的父节点啊

东哥能不能教教怎么用回溯打印所有的出栈序列?我在复习验证栈序列那题的时候突发奇想想换种方法用回溯来做这题,但是下手的时候就不会写了

可能需要逆向官方app?

不能用网页端来抓包吗?,刚看了下网页端的js登录逻辑还挺清晰