摘要: 操作系统,学习笔记 阅读全文
posted @ 2018-03-12 13:03 niuxu18 阅读(283) 评论(0) 推荐(0)
摘要: 中文 编译器选择的xelatex 或者lualatex 我试过的两种方式(都是基于ctex的)。 直接使用ctex的基本documentclass 直接使用ctex的基本documentclass 通过usepackage的方式引入ctex 通过usepackage的方式引入ctex 字号 \tin 阅读全文
posted @ 2018-03-05 16:21 niuxu18 阅读(953) 评论(0) 推荐(0)
摘要: 1. 主要内容 介绍程序语言的核心思想和C++的基本概念。 印象比较深刻的就是分而治之(divide and conque)的分解思想。 2. 知识广场 1) C++ 文件后缀 cc, cpp,,cxx 2) 编译器功能 一,检查错误(语法错误,类型错误); 二,代码生成(生成目标代码或者汇编指令) 阅读全文
posted @ 2018-02-28 15:23 niuxu18 阅读(175) 评论(0) 推荐(0)
摘要: 1. Git 初始化 git init git remote add repos_name repos_url git add . git commit -m 'commit message' git push 2. Git 设置用户名和邮箱 git config --global user.nam 阅读全文
posted @ 2018-02-28 11:05 niuxu18 阅读(189) 评论(0) 推荐(0)