JAVA集合应用

ArrayList使用


public class Notice {

private int id;
private String title;
private String creater;
private Date createTime;
//public Notice(int id, String title, String creater, Date createTime)
    //get &setter 
    //后面同理,构造函数+getter/setter方法+重写toString

}
/**

  • list示例
  • 公告需求管理
  • @author ely

*/
public class NoticeTest {

public static void main(String[] args) {
    //创建对象,生成三条公告
    Notice notice1 = new Notice(1, "欢迎来到这里", "管理员", new Date());
    Notice notice2 = new Notice(2, "该交作业了", "老师", new Date());
    Notice notice3 = new Notice(3, "考勤通知", "老师", new Date());
    
    //添加公告
    ArrayList noticeList = new ArrayList();
    noticeList.add(notice1);
    noticeList.add(notice2);
    noticeList.add(notice3);
    
    //显示公告
    System.out.println("--------公告的内容为:----------------");
    for(int i=0;i<noticeList.size();i++){
        System.out.println("公告"+(i+1)+":"+((Notice)(noticeList.get(i))).getTitle());
    }
    
    //在第一条公告后面添加一调新的公告
    Notice notice4= new Notice(4,"在线编辑器可以使用","管理员",new Date());
    noticeList.add(1, notice4);

    //删除
    noticeList.remove(2);
    
    //修改
    //修改第二条公告
    notice4.setTitle("JAVA在线编辑器可以使用啦");
    noticeList.set(1, notice4);
}

}

HashSet使用


public class Cat {

private String name;
private int month;
private String species;

}

/**

  • set示例
  • 宠物猫信息管理
  • @author ely

*/
public class CatTest {

public static void main(String[] args){
    Cat cat1 = new Cat("huahua",12,"american cat");
    Cat cat2 = new Cat("fanfan",3,"China cat");
    
//hashset添加数据
Set set = new HashSet();
set.add(cat1);
set.add(cat2);
Iterator it = set.iterator();
while(it.hasNext())
{
    System.out.println(it.next());
}
    

//当插入重复元素,记得重写hashcode和equals方法
System.out.println("-----------------------------------------");
System.out.println("after add chongfu content");
Cat cat3 = new Cat("huahua",12,"american cat");
set.add(cat3);
it=set.iterator();
while(it.hasNext())
{
    System.out.println(it.next());
}

//查询
//直接查找对象(object)
System.out.println("---------------------------------");
System.out.println("-------use object to query cat---------");
if(set.contains(cat3))
    {System.out.println("cat3 find !");
System.out.println(cat3);}
else {
    System.out.println("not find!");
}
//对于查找对象,如果我们通过对象的属性查找
System.out.println("---------------------------------");
System.out.println("-------use object to query cat---------");
boolean flag = false;
it = set.iterator();
while(it.hasNext()){
    Cat c =(Cat)it.next();
    if(c.getName().equals("huahua")){
        flag=true;//find "huahua"
        break;
    }
}
if(flag)
    System.out.println("find cat named hauhua");
else
    System.out.println("can't find cat named huahua");
}

}

HashMap


/**

  • hashmap示例
  • 在字典中添加内容并且显示
  • @author ely

*/

public class DictionaryDemo {

public static void main(String args[]){
    Map<String,String> animal = new HashMap<String,String>();
    System.out.println("---input 3 words and derscription----");
    Scanner scanner = new Scanner(System.in);
    //添加数据
    int i=0;
    while(i<3){
        System.out.println("input the key:(word)");
        String key= scanner.next();
        System.out.println("input the value(description)");
        String value = scanner.next();
        animal.put(key, value);
        i++;
    }
    //打印输出value
    System.out.println("--------------------------------");
    System.out.println("使用迭代器输出value");
    Iterator<String> it = animal.values().iterator();
    while(it.hasNext()){
        System.out.print(it.next()+"  ");
    }
    
    //打印输出key和value的值
    //通过entryset方法
    System.out.println("--------------------------------");
    System.out.println("使用entrySet输出key和value");
    Set<Entry<String,String>> entryset = animal.entrySet();
    for(Entry<String,String> entry :entryset)
    {
        System.out.println(entry.getKey()+"-"+entry.getValue());
    }
    
    
    //通过key找到value
    //使用keySet方法
    System.out.println("--------------------------------");
    System.out.println("input the word you want search");
    String strSearch = scanner.next();
    //1.取得keyset
    Set<String> keySet = animal.keySet();
    //2.遍历keySet
    for(String key:keySet){
        if(strSearch.equals(key)){
            System.out.println("find it !"+"key-value:"+key+"-"+animal.get(key));
            break;
        }
            
    }
    
    
}

}


public class Goods {

private String id;
private String name;
private double price;

}

public class GoodsTest {

public static void main(String[] args) {
    Scanner scanner = new Scanner(System.in);
    Map<String,Goods> goodsMap= new HashMap<String,Goods>();
    System.out.println("input 3 goods information:");
    int i=0;
    while(i<3){
        System.out.println("请输出第"+(i+1)+"条信息");
        System.out.println("商品编号:");
        String goodsId =scanner.next();
        System.out.println("商品名称:");
        String goodsName = scanner.next();
        System.out.println("商品价格:");
        double goodsPrice = scanner.nextDouble();
        
        Goods goods = new Goods(goodsId,goodsName,goodsPrice);
        //添加到hashmap中
        goodsMap.put(goodsId, goods);
        i++;
    }
    //遍历map,输出商品信息
    System.out.println("输出商品信息为:");
    Iterator<Goods> itgoods = goodsMap.values().iterator();
    while(itgoods.hasNext()){
        System.out.println(itgoods.next());
    }

}

}

LinkedList


/**

  • linkedList
  • eg1:使用linkedlist对字符串进行管理
  • @author ely

*/
public class LinkedListDemo1_forString {

public static void main(String[] args){
    LinkedList<String> list = new LinkedList<String>();
    //链表添加数据
    list.add("apple");
    list.add("pear");
    //数据添加到链表的开始
    list.addFirst("bannana");
    //数据添加到链表末尾
    list.addLast("grape");
    //指定位置添加数据
    list.add(2, "orange");
    //显示链表所有数据
    System.out.println(list);
    //判断链表是否包含指定元素
    boolean flag= list.contains("grape");
    if(flag){
        System.out.println("grape find !");
    }else{
        System.out.println("not find grape");
    }
    
    System.out.println(list.get(3));
    System.out.println(list.getFirst());
    System.out.println(list.getLast());
}

}


public class Student {

private String stuNum;
private String stuName;
private int age;

}

/**

  • linkedList
  • eg1:使用linkedlist对自定义对象(student)进行管理
  • @author ely

*/

public class LinkedListDemo2_forObject {

public static void main(String[] args) {

    LinkedList<Student> stuList = new LinkedList<Student>();
    Student stu1 = new Student("001","Mike",18);
    Student stu2 = new Student("002","jack",20);
    Student stu3 = new Student("003","mary",19);
    //将学生添加到链表使用push完成
    //push & pop就是针对queue进行添加和取出操作的
    stuList.push(stu1);
    stuList.push(stu2);
    stuList.push(stu3);
    System.out.println("链表为:"+stuList);
    System.out.println("弹出的元素为:"+stuList.pop());
    System.out.println("调用pop后的链表为"+stuList);
    
    //使用peek方法获取并不移除元素
    System.out.println("调用peek方法的数据为:"+stuList.peek());
    System.out.println("调用peek方法后的链表为:"+stuList);
    
    //调用poll方法
    System.out.println("调用poll方法输出元素"+stuList.poll());
    //调用poll方法将获取元素的同时从链表中删除了元素
    System.out.println("调用poll方法后的链表为:"+stuList);

}

}

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,362评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,330评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,247评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,560评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,580评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,569评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,929评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,587评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,840评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,596评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,678评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,366评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,945评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,929评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,165评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,271评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,403评论 2 342

推荐阅读更多精彩内容