2020-11-20 java---------------Set,hashset,treeset

2024-04-27 18:48

本文主要是介绍2020-11-20 java---------------Set,hashset,treeset,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Set,hashset,treeset

set

package cn.itcast_01;
/*
collection:
list有序是指存储顺序和取出顺序一致,可重复
set无序是指存储顺序和取出顺序不一致,唯一hashset不保证set迭代顺序,不能保证该顺序恒久不变linkedhashset底层是hash表和链表(存储和取出顺序一致)*/import java.util.HashSet;
import java.util.Set;public class SetDemo {public static void main(String[] args) {Set<String> set=new HashSet<String>();set.add("hello");set.add("java");set.add("ee");set.add("java");set.add("ee");for(String i :set){System.out.println(i);}}
}
/*
元素唯一且无序
ee
java
hello*/

hashset

的唯一性是通过hashcode和equals实现的,其实是哈希表结构,元素hash值相同并且元素值相同不会加入。
注意string类重写了hashcode和equals方法所以可以比较出相同,如果不重写一般不相同。如下

package cn.itcast_01;import java.util.HashSet;
import java.util.Set;public class SetDemo {public static void main(String[] args) {Set<Student> set=new HashSet<Student>();Student s1=new Student("小红",18);Student s2=new Student("小黄",18);Student s3=new Student("小红",20);Student s4=new Student("小黑",18);Student s5=new Student("小红",18);set.add(s1);set.add(s2);set.add(s3);set.add(s4);set.add(s5);for( Student i :set){System.out.println(i.toString());}}
}
/*
元素重复
Student{name='小红', age=20}
Student{name='小红', age=18}
Student{name='小黄', age=18}
Student{name='小红', age=18}
Student{name='小黑', age=18}*/
 @Overridepublic String toString() {return "Student{" +"name='" + name + '\'' +", age=" + age +'}';}@Overridepublic boolean equals(Object o) {if (this == o) return true;if (o == null || getClass() != o.getClass()) return false;Student student = (Student) o;return age == student.age &&Objects.equals(name, student.name);}@Overridepublic int hashCode() {return Objects.hash(name, age);}

Student{name=‘小黄’, age=18}
Student{name=‘小红’, age=18}
Student{name=‘小红’, age=20}
Student{name=‘小黑’, age=18}
没有重复了

TreeSet

能够按照某种顺序给元素排序(选哪个取决于用哪个构造方法)
A:自然排序 -------实现compareable接口重写compareto方法
B:比较器排序 (常见)

无参构造默认自然排序

自然排序 -------实现compareable接口重写compareto方法

package cn.itcast_01;import java.util.HashSet;
import java.util.Set;
import java.util.TreeSet;public class SetDemo {public static void main(String[] args) {TreeSet<Integer> ts=new TreeSet<>();  //无参构造默认自然排序ts.add(3);ts.add(1);ts.add(23);ts.add(15);ts.add(15);for( Integer i :ts){System.out.println(i);}}
}
/*
1
3
15
23*/
public class SetDemo {public static void main(String[] args) {TreeSet<Student> set=new TreeSet<Student>();Student s1=new Student("小红",18);Student s2=new Student("小黄",18);Student s3=new Student("小红",20);Student s4=new Student("小黑",18);Student s5=new Student("小红",18);set.add(s1);set.add(s2);set.add(s3);set.add(s4);set.add(s5);for( Student i :set){System.out.println(i.toString());}}
}
/*
报错:lang.ClassCastException: cn.itcast_01.Student cannot be cast to java.lang.Comparable
类要实现自然排序就必须实现自然排序接口*/

类要实现自然排序就必须实现自然排序接口重写的compareto方法要自己写

  public int compareTo(Student o) {//    return 0;  因为底层是红黑树,比根节点小往左子树大往右子树,所以比较得0认为相同大小不会插树 只存进去一个根节点 Student{name='小红', age=18}//    return 1;  同理,怎么进怎么出// return -1; 按输入顺序倒着输出//实际应该按照排序规则返回/*    int num=this.age-o.age;return num;结果:年龄相同名字相同的也无法存进来Student{name='小红', age=18}Student{name='小红', age=20}*/int num1=this.age-o.age;int num=num1==0?this.name.compareTo(o.name):num1;  //字符串自带comparetoreturn num;}

按照名字比较只需改写类的compareto

 @Overridepublic int compareTo(Student o) {int num1=this.name.length()-o.name.length();int num=num1==0?this.name.compareTo(o.name) :num1;return num;}
 public static void main(String[] args) {TreeSet<Student> set=new TreeSet<Student>();Student s1=new Student("小红",18);Student s2=new Student("小黄黄黄黄黄",18);Student s3=new Student("小红红",20);Student s4=new Student("小黑黑黑黑",18);Student s5=new Student("小红",19);set.add(s1);set.add(s2);set.add(s3);set.add(s4);set.add(s5);for( Student i :set){System.out.println(i.toString());}
/*
Student{name='小红', age=18}
Student{name='小红红', age=20}
Student{name='小黑黑黑黑', age=18}
Student{name='小黄黄黄黄黄', age=18}
实现从高到底排序只需要交换是this o
*/

但是这样名字一样并且长度一样的人年龄不同也不一定是一个人,比如19岁的小红没加进去

@Overridepublic int compareTo(Student o) {int num1=this.name.length()-o.name.length();int num2=(num1==0?this.name.compareTo(o.name) :num1);int num3=(num2==0?this.age-o.age:num2);return num3;}
/*
Student{name='小红', age=18}
Student{name='小红', age=19}
Student{name='小红红', age=20}
Student{name='小黑黑黑黑', age=18}
Student{name='小黄黄黄黄黄', age=18}
*/

比较器排序

public class MyComparator implements Comparator<Student> {@Overridepublic int compare(Student o1, Student o2) {int num1=o1.getName().length()-o2.getName().length();int num2=(num1==0?o1.getName().compareTo(o2.getName()) :num1);int num3=(num2==0?o1.getAge()-o2.getAge():num2);return num3;}
}
public static void main(String[] args) {
//        TreeSet<Student> set=new TreeSet<Student>();TreeSet<Student> set=new TreeSet<Student>(new MyComparator());  //接口类型的参数传一个实现该接口的类的实例Student s1=new Student("小红",18);Student s2=new Student("小黄黄黄黄黄",18);Student s3=new Student("小红红",20);Student s4=new Student("小黑黑黑黑",18);Student s5=new Student("小红",19);

实现从高到底排序只需要交换是s1 s2
只用一次就造个类很浪费,匿名内部类正好解决

 public static void main(String[] args) {
//        TreeSet<Student> set=new TreeSet<Student>();TreeSet<Student> set=new TreeSet<Student>(new Comparator<Student>() {@Overridepublic int compare(Student o1, Student o2) {int num1=o1.getName().length()-o2.getName().length();int num2=(num1==0?o1.getName().compareTo(o2.getName()) :num1);int num3=(num2==0?o1.getAge()-o2.getAge():num2);return num3;}});Student s1=new Student("小红",18);Student s2=new Student("小黄黄黄黄黄",18);Student s3=new Student("小红红",20);Student s4=new Student("小黑黑黑黑",18);Student s5=new Student("小红",19);

匿名内部类格式
new类名或接口名,大括号里面重写方法(此例子中接口是泛型)

一定要注意,给了排序标准后还要考虑潜在的
比如按总分排序,那总分一样的并不一定是一个人,还要看语数英等
Integer.parseint()可以把string类型转换成int类型

这篇关于2020-11-20 java---------------Set,hashset,treeset的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/941256

相关文章

JVM 的类初始化机制

前言 当你在 Java 程序中new对象时,有没有考虑过 JVM 是如何把静态的字节码(byte code)转化为运行时对象的呢,这个问题看似简单,但清楚的同学相信也不会太多,这篇文章首先介绍 JVM 类初始化的机制,然后给出几个易出错的实例来分析,帮助大家更好理解这个知识点。 JVM 将字节码转化为运行时对象分为三个阶段,分别是:loading 、Linking、initialization

Spring Security 基于表达式的权限控制

前言 spring security 3.0已经可以使用spring el表达式来控制授权,允许在表达式中使用复杂的布尔逻辑来控制访问的权限。 常见的表达式 Spring Security可用表达式对象的基类是SecurityExpressionRoot。 表达式描述hasRole([role])用户拥有制定的角色时返回true (Spring security默认会带有ROLE_前缀),去

浅析Spring Security认证过程

类图 为了方便理解Spring Security认证流程,特意画了如下的类图,包含相关的核心认证类 概述 核心验证器 AuthenticationManager 该对象提供了认证方法的入口,接收一个Authentiaton对象作为参数; public interface AuthenticationManager {Authentication authenticate(Authenti

Spring Security--Architecture Overview

1 核心组件 这一节主要介绍一些在Spring Security中常见且核心的Java类,它们之间的依赖,构建起了整个框架。想要理解整个架构,最起码得对这些类眼熟。 1.1 SecurityContextHolder SecurityContextHolder用于存储安全上下文(security context)的信息。当前操作的用户是谁,该用户是否已经被认证,他拥有哪些角色权限…这些都被保

Spring Security基于数据库验证流程详解

Spring Security 校验流程图 相关解释说明(认真看哦) AbstractAuthenticationProcessingFilter 抽象类 /*** 调用 #requiresAuthentication(HttpServletRequest, HttpServletResponse) 决定是否需要进行验证操作。* 如果需要验证,则会调用 #attemptAuthentica

Spring Security 从入门到进阶系列教程

Spring Security 入门系列 《保护 Web 应用的安全》 《Spring-Security-入门(一):登录与退出》 《Spring-Security-入门(二):基于数据库验证》 《Spring-Security-入门(三):密码加密》 《Spring-Security-入门(四):自定义-Filter》 《Spring-Security-入门(五):在 Sprin

Java架构师知识体认识

源码分析 常用设计模式 Proxy代理模式Factory工厂模式Singleton单例模式Delegate委派模式Strategy策略模式Prototype原型模式Template模板模式 Spring5 beans 接口实例化代理Bean操作 Context Ioc容器设计原理及高级特性Aop设计原理Factorybean与Beanfactory Transaction 声明式事物

Java进阶13讲__第12讲_1/2

多线程、线程池 1.  线程概念 1.1  什么是线程 1.2  线程的好处 2.   创建线程的三种方式 注意事项 2.1  继承Thread类 2.1.1 认识  2.1.2  编码实现  package cn.hdc.oop10.Thread;import org.slf4j.Logger;import org.slf4j.LoggerFactory

JAVA智听未来一站式有声阅读平台听书系统小程序源码

智听未来,一站式有声阅读平台听书系统 🌟&nbsp;开篇:遇见未来,从“智听”开始 在这个快节奏的时代,你是否渴望在忙碌的间隙,找到一片属于自己的宁静角落?是否梦想着能随时随地,沉浸在知识的海洋,或是故事的奇幻世界里?今天,就让我带你一起探索“智听未来”——这一站式有声阅读平台听书系统,它正悄悄改变着我们的阅读方式,让未来触手可及! 📚&nbsp;第一站:海量资源,应有尽有 走进“智听

usaco 1.3 Mixing Milk (结构体排序 qsort) and hdu 2020(sort)

到了这题学会了结构体排序 于是回去修改了 1.2 milking cows 的算法~ 结构体排序核心: 1.结构体定义 struct Milk{int price;int milks;}milk[5000]; 2.自定义的比较函数,若返回值为正,qsort 函数判定a>b ;为负,a<b;为0,a==b; int milkcmp(const void *va,c