2018年5月24日
摘要: 背景:将一个数组排序,并且打印; 1.下面使用选择排序、和冒泡排序来写: public class Test { public static void main(String[] args) { int a[] = {9, 5, 3, 7, 1, 10}; DataSorter.sort(a); D 阅读全文
posted @ 2018-05-24 22:56 有点懒惰的大青年 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 背景:要把<script>等<>html标签替换掉;把敏感词屏蔽或者替换等; 1.刚开始可能这么写: public class Main { public static void main(String[] args) { String msg = "大家好:),<script>,敏感,被就业,撒的 阅读全文
posted @ 2018-05-24 00:04 有点懒惰的大青年 阅读(746) 评论(0) 推荐(0) 编辑