如何基于最频繁的出现来排序json数组

时间:2018-02-22 14:53:34

标签: java android algorithm sorting

我需要找出最受欢迎的顶级组合,我需要列出20个最常订购的披萨配置(列出每个顶部):

[
  {
    "toppings": [
      "pepperoni"
    ]
  },
  {
    "toppings": [
     "mozzarella cheese",
     "bacon",
     "beef",
     "onions",
     "pineapple"
    ]
  },
  {
    "toppings": [
      "pepperoni"
    ]
  },
  {
    "toppings": [
      "bacon"
    ]
  },
  {
    "toppings": [
      "sausage",
      "beef"
    ]
  },

以下是我尝试的内容:我试图计算每个顶部的出现次数 - 但这完全失败了。

0 个答案:

没有答案