博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
golang数据结构之map篇
阅读量:5314 次
发布时间:2019-06-14

本文共 769 字,大约阅读时间需要 2 分钟。

package mainimport (	"github.com/sanity-io/litter")func main() {	var mapInt = make(map[int]int)	// add	for i := 1; i < 10; i++ {		mapInt[i] = i	}	litter.Dump(mapInt)	// update	mapInt[3] = 0	litter.Dump(mapInt)	// del	delete(mapInt, 3)	litter.Dump(mapInt)	// del when iterator	for k, v := range mapInt {		if v % 2 == 0 {			delete(mapInt, k)		}	}	litter.Dump(mapInt)	// query	v, ok := mapInt[9]	if ok {		litter.Dump(v, "is exist!")	}}outputmap[int]int{  1: 1,  2: 2,  3: 3,  4: 4,  5: 5,  6: 6,  7: 7,  8: 8,  9: 9,}map[int]int{  1: 1,  2: 2,  3: 0,  4: 4,  5: 5,  6: 6,  7: 7,  8: 8,  9: 9,}map[int]int{  1: 1,  2: 2,  4: 4,  5: 5,  6: 6,  7: 7,  8: 8,  9: 9,}map[int]int{  1: 1,  5: 5,  7: 7,  9: 9,}9 "is exist!"

  

转载于:https://www.cnblogs.com/LittleLee/p/9387775.html

你可能感兴趣的文章
bzoj 1024 [ SCOI 2009 ] 生日快乐 —— 递归
查看>>
excel导入 HSSFWorkbook和XSSFWorkbook
查看>>
tarjan算法详解
查看>>
常用模块之 time,datetime,random,os,sys
查看>>
JSON 解析的两种方法
查看>>
cannot fetch plan for SQL_ID: 5qgz1p0cut7mx, CHILD_NUMBER: 0
查看>>
极大似然估计与贝叶斯定理
查看>>
4.3.2 基于集合的操作
查看>>
目标行动实现
查看>>
redis基础一_常用指令
查看>>
helloworld:一个完整的WCF案例
查看>>
MongoDB基本命令的使用
查看>>
Java队列集合的性能测试
查看>>
eclipse实现代码块折叠-类似于VS中的#region……#endregion
查看>>
IntelliJ IDEA——数据库集成工具(Database)的使用
查看>>
hdu 1671
查看>>
【操作系统】对操作系统的了解
查看>>
一种快速统计SQL Server每个表行数的方法
查看>>
SQL Server索引进阶第十篇:索引的内部结构
查看>>
软件工程第一次作业补充
查看>>