初始提交

This commit is contained in:
2025-08-24 01:01:26 +08:00
commit e51feb1296
35 changed files with 9348 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
# 第四章:数据结构
本章将学习 Go 语言的内置数据结构,包括数组、切片、映射、结构体和指针。
## 学习目标
- 理解数组和切片的区别
- 掌握映射的操作方法
- 学会定义和使用结构体
- 了解指针的概念和用法
## 文件列表
- `01-arrays.go` - 数组
- `02-slices.go` - 切片
- `03-maps.go` - 映射
- `04-structs.go` - 结构体
- `05-pointers.go` - 指针