1 package cn.itcast.p2.toolclass.collections.demo;
2
3 import java.util.ArrayList;
4 import java.util.Collections;
5 import java.util.Comparator;
6 import java.util.List;
7 import java.util.TreeSet;
8
9 import cn.itcast.p2.comparator.ComparatorByLength;
10
11 public class CollectionsDemo {
12
13 public static void main(String[] args) {
14 // TODO Auto-generated method stub
15 /*
16 * Collections:是集合框架的工具类。
17 * 里面的方法都是静态的。
18 */
19 // demo_1();//排序
20 // demo_2();//折半 最值
21 // demo_3();//逆序
22 demo_4();//替换
23
24 }
25
26
27
28 private static void demo_4() {
29 // TODO Auto-generated method stub
30 List<String> list = new ArrayList<String>();
31
32 list.add("abcde");
33 list.add("cba");
34 list.add("zhangsan");
35 list.add("zhaoliu");
36 list.add("xiaoqiang");
37
38 System.out.println(list);
39 // Collections.replaceAll(list, "cba", "nba");//replaceAll相当于set(indexOf"cba","nba");
40 // Collections.fill(list, "cc");//fill一次性将集合的所有值替换或重新初始化一次
41 Collections.shuffle(list);//随机将元素安在任意位置
42 System.out.println(list);
43 }
44
45 private static void demo_3() {
46 // TODO Auto-generated method stub
47
48 // TreeSet<String> ts = new TreeSet<String>(Collections.reverseOrder());//原理就是下面这个方法
49 /* TreeSet<String> ts = new TreeSet<String>(new Comparator<String>() {
50 public int compare(String o1, String o2) {
51 int temp = o2.compareTo(o1);
52 return temp;
53 }
54 });
55 */ //自己实现
56
57 //reverseOrder(Comparator<T> cmp),将一个已有比较器逆转
58 TreeSet<String> ts = new TreeSet<String>(Collections.reverseOrder(new ComparatorByLength()));
59 ts.add("abc");
60 ts.add("hahaha");
61 ts.add("zzz");
62 ts.add("aa");
63 ts.add("cba");
64
65 System.out.println(ts);
66 }
67
68 private static void demo_2() {
69 // TODO Auto-generated method stub
70 List<String> list = new ArrayList<String>();
71
72 list.add("abcde");
73 list.add("cba");
74 list.add("aa");
75 list.add("zzz");
76 list.add("cba");
77 list.add("nbaa");
78 //折半要先排序
79 Collections.sort(list);
80 System.out.println(list);
81
82 int index = Collections.binarySearch(list, "aaa");
83
84 System.out.println("index="+index);
85
86 //获取最大值。
87 // String max = Collections.max(list);//max=zzz
88 String max = Collections.max(list,new ComparatorByLength());
89 System.out.println("max="+max);
90 }
91
92 public static void demo_1() {
93
94 List<String> list = new ArrayList<String>();
95
96 list.add("abcde");
97 list.add("cba");
98 list.add("aa");
99 list.add("zzz");
100 list.add("nbaa");
101 System.out.println(list);
102
103
104
105 //对list集合进行指定顺序的排序。
106 // Collections.sort(list);
107 // mySort(list);
108 // mySort(list, new ComparatorByLength());
109 System.out.println(list);
110
111
112 }
113 //下面方法相当于Collections.sort(list,new ComparatorByLength);
114 /*
115 public static <T> void mySort(List<T> list,Comparator<? super T> comp) {
116
117 for (int i = 0; i < list.size()-1; i++) {
118 for (int j = i+1; j < list.size(); j++) {
119 if (comp.compare(list.get(i),list.get(j)) >0) {
120 // T temp = list.get(i);
121 // list.set(i, list.get(j));
122 // list.set(j, temp);
123 Collections.swap(list, i, j);
124 }
125 }
126 }
127 }
128 //介绍Collections.swap交换方法
129 /*
130 public static <T extends Comparable<? super T>> void mySort(List<T> list) {
131 for (int i = 0; i < list.size()-1; i++) {
132 for (int j = i+1; j < list.size(); j++) {
133 if (list.get(i).compareTo(list.get(j))> 0 ) {
134 // T temp = list.get(i);
135 // list.set(i, list.get(j));
136 // list.set(j, temp);
137 Collections.swap(list, i, j);
138 }
139 }
140 }
141 }*/
142
143 //相当于按自然顺序方法升序排列Collections.sort
144 //public static <T extends Comparable<? super T>> void sort(List<T> list)
145 /*
146 public static <T extends Comparable<? super T>> void mySort(List<T> list) {
147 for (int i = 0; i < list.size()-1; i++) {
148 for (int j = i+1; j < list.size(); j++) {
149 if (list.get(i).compareTo(list.get(j))> 0 ) {
150 T temp = list.get(i);
151 list.set(i, list.get(j));
152 list.set(j, temp);
153 }
154 }
155 }
156 }*/
157
158 //传入String类型的集合
159 /* public static void mySort(List<String> list) {
160
161 for (int i = 0; i < list.size()-1; i++) {
162 for (int j = i+1; j < list.size(); j++) {
163 if (list.get(i).compareTo(list.get(j))> 0 ) {
164 String temp = list.get(i);
165 list.set(i, list.get(j));
166 list.set(j, temp);
167 }
168 }
169 }
170 }*/
171
172 }

CollectionsDemo

集合框架-工具类-Collections-逆序替换的更多相关文章

  1. java基础37 集合框架工具类Collections和数组操作工具类Arrays

    一.集合框架工具类:Collections 1.1.Collections类的特点 该工具类中所有的方法都是静态的 1.2.Collections类的常用方法 binarySearch(List< ...

  2. JAVA基础学习之 Map集合、集合框架工具类Collections,Arrays、可变参数、List和Set集合框架什么时候使用等(4)

    package com.itcast.test20140113; import java.util.ArrayList; import java.util.Arrays; import java.ut ...

  3. java集合框架工具类Collections,集合的操作

    1 import java.util.*; public class asList { public static void main(String args[]) { // int arr[] = ...

  4. 集合框架工具类--Collections排序

    package ToolCollectionsDemo; import java.util.ArrayList; import java.util.Collections; import java.u ...

  5. 操作集合的工具类Collections

    1       操作集合的工具类Collections Java提供了一个操作Set.List和Map等集合的工具类:Collections,该工具类里提供了大量方法对集合元素进行排序.查询和修改等操 ...

  6. java之操作集合的工具类--Collections

    Collections是一个操作Set.List和Map等集合的工具类. Collections中提供了大量方法对集合元素进行排序.查询和修改等操作,还提供了对集合对象设置不可变.对集合对象实现同步控 ...

  7. Java-集合第六篇操作集合的工具类Collections

    1.Java提供了一个操作Set.List.Map等集合的工具类:Collections. 工具类中提供的方法主要针对Set.List.Map的排序.查询.修改等操作,以及将集合对象设置为不可变.对集 ...

  8. Java基础---泛型、集合框架工具类:collections和Arrays

    第一讲     泛型(Generic) 一.概述 1.JDK1.5版本以后出现的新特性.用于解决安全问题,是一个类型安全机制. 2.JDK1.5的集合类希望在定义集合时,明确表明你要向集合中装入那种类 ...

  9. 集合框架-工具类-Collections-排序

    1 package cn.itcast.p2.toolclass.collections.demo; 2 3 import java.util.ArrayList; 4 import java.uti ...

随机推荐

  1. 辅助函数和高阶函数 map、filter、reduce

    辅助函数和高阶函数 map.filter.reduce: 一.辅助函数:(1-1)响应式函数 (数组更新检测):    push()    pop()    shift()    unshift()  ...

  2. 定义Anroid SO崩溃位置

    E:\android-ndk-r13b\toolchains\arm-linux-androideabi-4.9\prebuilt\windows-x86_64\bin> arm-linux-a ...

  3. 【LeetCode】1029. Two City Scheduling 解题报告(Python)

    作者: 负雪明烛 id: fuxuemingzhu 个人博客: http://fuxuemingzhu.cn/ 目录 题目描述 题目大意 解题方法 小根堆 排序 日期 题目地址:https://lee ...

  4. 【LeetCode】990. Satisfiability of Equality Equations 解题报告(C++ & python)

    作者: 负雪明烛 id: fuxuemingzhu 个人博客: http://fuxuemingzhu.cn/ 目录 题目描述 题目大意 解题方法 DFS 并查集 日期 题目地址:https://le ...

  5. 【LeetCode】944. Delete Columns to Make Sorted 解题报告(Python)

    作者: 负雪明烛 id: fuxuemingzhu 个人博客: http://fuxuemingzhu.cn/ 目录 题目描述 题目大意 解题方法 日期 题目地址:https://leetcode.c ...

  6. Ubuntu mininet+Ryu环境安装

    我们使用下载Ryu源代码进行那个安装 Ryu官方文档:http://ryu.readthedocs.io/en/latest/ Ryu电子书:http://osrg.github.io/ryu/res ...

  7. 深入 Laravel 内核之IOC容器

    升级工厂前的准备工作 无规矩不成方圆,随着越来越多的行为出现,我们需要需要定下一些规范. 为了约束每一个行为的规范,需要定义一个行为接口: interface BehaviorInterface { ...

  8. Centos7安装maxscale 实现mysql的读写分离

    安装依赖 yum install -y novacom-server.x86_64 libaio.x86_64 libaio-devel.x86_64 网站下载 https://downloads.m ...

  9. [ flask-migrate ] 记自己犯的一次低级错误

    问题描述 从github上pull了别人的项目学习,项目用flask-migrate来迁移数据库.查看了一下,作者把数据库文件 app.db 删除了,不过migrations文件夹留着的,因此我只需要 ...

  10. [ SQLAlchemy ] 经验总结、QA

    1.filter 和 filter_by [ 共同点 ]:查询后,用于过滤数据 [ 不同点 ]: 1.filter:过滤查询后的数据,用SQL表达式 session.query(MyClass).fi ...