dtjzpg5313 2018-07-29 11:12
浏览 245
已采纳

Golang中的多维数组

Coming from a language that uses array (PHP) and only 3 days of experience in golang, how can I translate a multi-dimensional array assignment using map (or slice, or combination)

I have this code in PHP: $set is a collection of document vectors (string => frequency).

I normally can create a posting statistics like this:

$postinglist = array();  

foreach ($set as $id=>$doc) {
      foreach ($doc as $term => $value) {

      if(!isset($postinglist[$term][$id])) {
          $postinglist[$term][$id] = $value;
      }
}

So it would look something like:

array ( 
   'the' => array ( 
      1 => 5, 
      2 => 10 
      ), 
   'and' => array ( 
      1 => 6, 
      3 => 7
      )
    )

After building my corpus (just array of all terms in all documents), I would then build the posting list for each terms:

$terms = $this->getAllTerms();

foreach($terms as $term) {
    $entry = new EntryStatistics();

    foreach($postinglist[$term] as $id => $value) {
       $post = new PostingStatistics;
       $post->setTf($value);
       $entry->setPostingList($id, $post);
    }
}

I'm wondering if there's a neat way of doing such in golang as I've tried this:

postinglist := make(map[string]map[int]float64)
for id, doc := range indexmanager.GetDocuments() {
  for str, tf := range doc {
      _, ok_pl := postinglist[str][id]
      if !ok_pl {
          postinglist[str] = make(map[int]float64)
          postinglist[str][id] = tf
      }
   }
}

Of course it doesn't work, as it always initializes the map everytime I do:

postinglist[str] = make(map[int]float64)
  • 写回答

3条回答 默认 最新

  • doushanlv5184 2018-07-29 12:28
    关注

    Make a map if the map is nil. For example,

    package main
    
    import (
        "fmt"
        "math"
    )
    
    func main() {
        tests := []struct {
            s string
            i int
            f float64
        }{
            {"s", 42, math.Pi},
            {"s", 100, math.E},
            {"s", 100, 1000.0},
            {"x", 1, 2.0},
        }
    
        var m map[string]map[int]float64
        fmt.Println(m)
        for _, t := range tests {
            if m == nil {
                m = make(map[string]map[int]float64)
            }
            if m[t.s] == nil {
                m[t.s] = make(map[int]float64)
            }
            m[t.s][t.i] += t.f
            fmt.Println(m)
        }
    }
    

    Playground: https://play.golang.org/p/IBZxGgAi6eL

    Output:

    map[]
    map[s:map[42:3.141592653589793]]
    map[s:map[42:3.141592653589793 100:2.718281828459045]]
    map[s:map[42:3.141592653589793 100:1002.718281828459]]
    map[s:map[42:3.141592653589793 100:1002.718281828459] x:map[1:2]]
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 安卓adb backup备份应用数据失败
  • ¥15 eclipse运行项目时遇到的问题
  • ¥15 关于#c##的问题:最近需要用CAT工具Trados进行一些开发
  • ¥15 南大pa1 小游戏没有界面,并且报了如下错误,尝试过换显卡驱动,但是好像不行
  • ¥15 没有证书,nginx怎么反向代理到只能接受https的公网网站
  • ¥50 成都蓉城足球俱乐部小程序抢票
  • ¥15 yolov7训练自己的数据集
  • ¥15 esp8266与51单片机连接问题(标签-单片机|关键词-串口)(相关搜索:51单片机|单片机|测试代码)
  • ¥15 电力市场出清matlab yalmip kkt 双层优化问题
  • ¥30 ros小车路径规划实现不了,如何解决?(操作系统-ubuntu)