Java代码存放处(虽然这看起来好傻逼啊/(ㄒoㄒ)/~~)
算法执行时间的渐进表示法
今天算法设计课上老师讲了算法执行时间的渐进表示法,首先复习了大$O$记号($big\ O\ notation$)
其中,欧几里得辗转相除法(求最大公约数迭代算法)的渐近时间复杂度的计算并不是很好理解,这里先把结果贴出来: $O({log\ n}+{log\ m})$ .
使用的书是《算法设计与分析- C++语言描述(第3版)》 电子工业出版社
IntelliJ IDEA JavaFX Scene Builder问题一则
下午我打算新建一个工程,研究ChoiceBox该怎么使用,发现新工程的Scene Builder假死,下面记录一下当时的情况。
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick Start
Create a new post
1 | $ hexo new "My New Post" |
More info: Writing
Run server
1 | $ hexo server |
More info: Server
Generate static files
1 | $ hexo generate |
More info: Generating
Deploy to remote sites
1 | $ hexo deploy |
More info: Deployment
1 | #include <stdio.h> |