如何在MAP中使用结构体

//用TreeMap自动排序

public static void main(String[] args) throws Exception {
  
  String ss[]={"1.1","1.2.3","1.5","1.3.2","2.5"};
  Map<String, String> map=new TreeMap<String, String>();
  for (int i = 0; i < ss.length; i++) {
   map.put(ss[i], i+"");
  }
  System.out.println("排序后为:");
  Set<Map.Entry<String, String>> entrys=map.entrySet();
  for (Map.Entry<String, String> entry:entrys) {
   System.out.println(entry.getKey()+"="+entry.getValue());
  }
 }



如何在MAP中使用结构体,并实现查找和遍历功能。
typedef struct size{
  int width;
  int Heigh;
 }simple;

 typedef struct cc
{
  simple t;
  char* str1;
  char* str2;
  int a;
}kk;


 typedef map<int,kk,less<int>> MyMap_Source;
 MyMap_Source MyMap;
 MyMap_Source::iterator theIterator;

 kk a = {{12,23},"what","are",1};
 kk b = {{12,24},"what","are",3};
 kk c = {{12,25},"what","are",5};

 int Index = 0;
 MyMap[Index] = a;
 MyMap[Index + 1] = b;
 MyMap[Index + 2] = c;//这里用insert不行,而且[]只能用在插入操作,其他的操作不能用,不可以用在遍历中


 theIterator = MyMap.find(2);//查找
 if (theIterator != MyMap.end())
 {
   kk ad = theIterator->second;
   simple d = ad.t;
 }


当然我们也可以用迭代器来遍历map容器
for(theIterator = MyMap.begin(); theIterator != MyMap.end(); ++theIterator)
{
  kk temp = theIterator->second;
}



  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值