# go学习笔记 **Repository Path**: aide-cloud/go-study-notes ## Basic Information - **Project Name**: go学习笔记 - **Description**: 用于记录个人的go学习笔记 - **Primary Language**: Go - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-10-26 - **Last Updated**: 2021-10-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: Algorithm, Go语言 ## README # go学习笔记 #### 介绍 >用于记录个人的go学习笔记,所有算法及数据结构都是用go语言来实现的 > #### 环境准备 1. 根目录的go.mod文件为本次项目包管理工具,本地环境没有所需的包,执行`go mod tidy` 1. 本地机器装有git,执行`git clone ` #### 安装教程 1. 对应模块有一个集成好的run方法,把该方法放在main函数里面运行即可 2. 调整run方法里面的内容,即可测试你想看到的算法结果 3. 进入根目录执行`go run main.go`即可 #### 使用说明 1. Goroutine是go协程的学习笔记 2. List是go链表的学习笔记 #### git提交简单流程 1. `git add .` 2. `git commit -m "your message"` 3. `git push`