Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
fengzgPolyvi committed Mar 2, 2021
1 parent affee0e commit 027c2c8
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 8 deletions.
18 changes: 10 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
# c2020
# c2021

## 基本操作流程

1.[https://github.com/luckymark/c2020](https://github.com/luckymark/c2020) fork 到你自己的 github 中
2. 创建本地仓库:(如果用机房的电脑,则建议 clone 到 U 盘,便于携带)
1.[https://github.com/luckymark/c2021](https://github.com/luckymark/c2021) fork 到你自己的 github 中
2. 创建本地仓库:(**如果用机房的电脑,则建议 clone 到 U 盘,便于携带**)

```
git clone https://github.com/ **YourGithubAccount** /c2020
cd c2020
git clone https://github.com/ **YourGithubAccount** /c2021
cd c2021
ls
git config user.name=???
git config user.email=???
git remote -v
git remote add upstream https://github.com/luckymark/c2020
git remote add upstream https://github.com/luckymark/c2021
```

3. 修改、提交代码:
Expand All @@ -26,7 +26,7 @@
git push
```

4.https://github.com/luckymark/c2020 获取更新
4.https://github.com/luckymark/c2021 获取更新

```
git fetch upstream
Expand All @@ -39,7 +39,7 @@

5. 请求老师 review 代码的方法:在 github 网页上发起一个 PR(pull request)即可

## [作业](https://github.com/luckymark/c2020/tree/master/practices)
## [作业](https://github.com/luckymark/c2021/tree/master/practices)

1. level0 可选,用于还不够熟练的同学练手(嫌题目太少的同学,那就刷刷咱[神技大学的 OJ](http://acm.uestc.edu.cn/#/)吧,从低到高地刷哈)
2. level1 必做,课堂+课后练习
Expand All @@ -53,6 +53,8 @@

### C语言参考:

- [c语言资料大全](https://github.com/jobbole/awesome-c-cn)

- [Linux C编程一站式学习](http://akaedu.github.io/book/index.html) (把书读厚)

- [K&R C语言程序设计](https://github.com/huyubing/books-pdf/blob/master/C%E7%A8%8B%E5%BA%8F%E8%AE%BE%E8%AE%A1%E8%AF%AD%E8%A8%80(K%26R)%E6%B8%85%E6%99%B0%E4%B8%AD%E6%96%87%E7%89%88.pdf) (把书读薄)
Expand Down
17 changes: 17 additions & 0 deletions 实验/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
## 实验题目(任选一项):

1. 打飞机游戏:

2. 五子棋AI:

注:五子棋AI是否使用图形界面,请随意!

## GUI
- [EasyX](https://easyx.cn/)
- [SFML](https://www.sfml-dev.org/)
- [raylib](https://github.com/raysan5/raylib)

## 参考

- [五子棋AI算法](https://blog.csdn.net/lihongxun945/category_6089493.html)
- [新游戏设计模式ECS](https://zhuanlan.zhihu.com/p/30538626)

0 comments on commit 027c2c8

Please sign in to comment.