摘要:
背景:将一个数组排序,并且打印; 1.下面使用选择排序、和冒泡排序来写: public class Test { public static void main(String[] args) { int a[] = {9, 5, 3, 7, 1, 10}; DataSorter.sort(a); D 阅读全文
摘要:
背景:要把<script>等<>html标签替换掉;把敏感词屏蔽或者替换等; 1.刚开始可能这么写: public class Main { public static void main(String[] args) { String msg = "大家好:),<script>,敏感,被就业,撒的 阅读全文