首頁 > 軟體

Golang將Map的鍵值對調的實現範例

2022-02-22 13:01:57

一、Map是什麼?

map是一堆鍵值對的未排序集合,類似Python中字典的概念,它的格式為map[keyType]valueType,是一個key-value的hash結構。map的讀取和設定也類似slice一樣,通過key來操作,只是slice的index只能是int型別,而map多了很多型別,可以是int,可以是string及所有完全定義了==與!=操作的型別

二、詳細程式碼

1.對調鍵值

Map原資料:

moMap := map[string]int{
        "張三": 21, "李四": 56, "王五": 23,
        "趙六": 45, "周七": 32, "陳八": 21,
        "許九": 21, "王十": 16, "吳三": 45,
        "鄭六": 23, "許七": 43, "李三": 16,
    }

具體程式碼如下(範例):

// 鍵值對調 
// 傳入引數:moMap map[string]int
// 返回值: map[int][]string
func reserveMap(moMap map[string]int) map[int][]string {
    // 建立一個 resMap 與 moMap 容量相同
    // 由於對調可能存在多個值對應一個Key
    // string 需轉為 切片[]string
    resMap := make(map[int][]string, len(moMap))

    // 通過for range 遍歷 moMap
    // k 即為 Key v 即為 Value
    for k, v := range moMap {
        // 由於現在對應為 切片[]string
        // 使用 append 達到新增多個的效果
        resMap[v] = append(resMap[v], k)
    }
    
    // 程式結束
    return resMap
}

2.進行呼叫

詳細程式碼如下(範例):

package main

import (
    "fmt"
)


func main() {
    moMap := map[string]int{
        "張三": 21, "李四": 56, "王五": 23,
        "趙六": 45, "周七": 32, "陳八": 21,
        "許九": 21, "王十": 16, "吳三": 45,
        "鄭六": 23, "許七": 43, "李三": 16,
    }

    // 列印對調前
    for k, v := range moMap {
        fmt.Printf("Key: %v, Value: %v n", k, v)
    }

    resMap := reserveMap(moMap)

    fmt.Println("reserve:")
    // 列印對調後
    for k, v := range resMap {
        fmt.Printf("Key: %v, Value: %v n", k, v)
    }
}

// 鍵值對調
// 傳入引數:moMap map[string]int
// 返回值: map[int][]string
func reserveMap(moMap map[string]int) map[int][]string {
    // 建立一個 resMap 與 moMap 容量相同
    // 由於對調可能存在多個值對應一個Key
    // string 需轉為 切片[]string
    resMap := make(map[int][]string, len(moMap))

    // 通過for range 遍歷 moMap
    // k 即為 Key v 即為 Value
    for k, v := range moMap {
        // 由於現在對應為 切片[]string
        // 使用 append 達到新增多個的效果
        resMap[v] = append(resMap[v], k)
    }

    // 程式結束
    return resMap
}

總結

鍵值的簡單調換是熟悉Golang Map 資料型別的前奏。

PS:golang 無序的鍵值對集合map

package main

import "fmt"

func main() {
     /*建立集合並初始化 */
    countryCapitalMap := make(map[string]string)

    /* map插入key - value對,各個國家對應的首都 */
    countryCapitalMap [ "France" ] = "巴黎"
    countryCapitalMap [ "Italy" ] = "羅馬"
    countryCapitalMap [ "Japan" ] = "東京"
    countryCapitalMap [ "India " ] = "新德里"

    /*使用鍵輸出value值 */
    for country := range countryCapitalMap {
        fmt.Println(country, "首都是", countryCapitalMap [country])
    }

    /*檢視元素在集合中是否存在 */
    capital, ok := countryCapitalMap [ "American" ] /*如果確定是真實的,則存在,否則不存在 */
    /*fmt.Println(capital) */
    /*fmt.Println(ok) */
    if (ok) {
        fmt.Println("American 的首都是", capital)
    } else {
        fmt.Println("American 的首都不存在")
    }
}

到此這篇關於Golang將Map的鍵值對調的實現範例的文章就介紹到這了,更多相關Golang Map鍵值對調 內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com