Array & Linked list
Arrays
1. List as an array of a fixed length
In Java:
1234567891011final int[] nums = new int[4];x = nums[3]; // 53nums[3] = 4;// More complicated arraysclass Student{ String name; int id;}final Student[] studs = new Student[3];studs[1].name = "John";st...
Hexo Project
Installation
安装指令
npm是nodejs指令
npm install -g hexo-cli
版本检查
在PowerShell中无法运行,只能用cmd
hexo -v
Project Creation
创建项目
注意先加载到想要放项目的文件夹中:cd <foldername>
这条指令会把需要的文件clone到文件夹中,需要一些时间。
hexo init <name of project>
当看到
1INFO Start blogging with Hexo!
后就表示成功了。
...