Time Complexity

Defination

Time Complexyity is growth trend of algorithm running time as data size becomes larger.

Essence (Optional)

We denote the input data size as $n$. We also denote the number of operations as the function $T(n)$, the time complexity as $O(n)$ and this mathematical notation is called “Big-$O$ Notation”, which stands for the “asymptotic upper bound” of the function $T(n)$.

Read more »

Why did I choose Hexo + GitHub + Netlify?

Hexo

Hexo is a fast, simple & powerful blog framework which can help us to generate the static files of blog and deploy the sites. The reason why I choose Hexo is only NexT theme of Hexo.

GitHub

I use GitHub to manage all the articles of my blog and regard it as a Cloud Drive to sync files.

Netlify

The reasons why I choose Netlify are:

  • It can help me to generate and deploy the sites automatically, which means that I don’t need to memorize the command of Hexo such as hexo generate and hexo deploy. I only need to git push my articles to my repo on GitHub.
  • I can add my customized domain so easily. It can address DNS verification problem and also https problem in a very simple way.

Alternatively, you can also choose GitHub Pages (Maybe I will move my blog to GitHub Pages in the future).

Read more »
0%