Java实现敏感词过滤(敏感词替换DFA算法)

news/2024/11/24 13:56:36/

DFA:

        DFA即Deterministic Finite Automaton,也就是确定有穷自动机。在实现文字过滤的算法中,DFA是比较好的实现算法。

实现思路:

        1.将敏感词添加到List列表中

private static String s1 = "你妈的";
private static String s2 = "草泥马";
private static String s3 = "日本佬";
private static String s4 = "你大爷的";
private static String s5 = "泥马的";List<String> list = new LinkedList<>();list.add(s1);list.add(s2);list.add(s3);list.add(s4);list.add(s5);

        2.遍历List列表将所有敏感词封装进Map中

/*** 封装敏感词汇** @param list list列表* @return 返回根节点*/private static Map<Character, Map> getSentiveWorld(List<String> list) {//root:根节点Map<Character, Map> root = new HashMap<>();//node:当前节点Map<Character, Map> node = new HashMap<>();//遍历敏感词列表,取出每一个敏感词for (String word : list) {//遍历每个敏感词前先把node指向rootnode = root;//遍历每一个敏感词的每一个字符for (int i = 0; i < word.length(); i++) {if (node.containsKey(word.charAt(i))) {//如果node包含该字符,node指向该字符(key)所对应的valuenode = node.get(word.charAt(i));} else {//如果node不包含该字符,向node中添加以该字符为(key),next为(value)的map,并把node指向next//next:下一个节点Map<Character, Map> next = new HashMap<>();node.put(word.charAt(i), next);node = next;}}//遍历完每一个敏感词之后都在末尾添加一个结束标志node.put('\t', null);}return root;}

        3.替换敏感词

/*** 替换内容的方法** @param str 字符串* @return 返回替换之后的字符串*/private static String replaceContent(String str, Map<Character, Map> map) {//下标指针int index;//是否有敏感词汇统计int count;StringBuilder sb = new StringBuilder();//遍历字符串for (int i = 0; i < str.length(); i += index) {index = 0;count = 0;//将封装好敏感词汇的map赋值给map1Map<Character, Map> map1 = map;//判断map1中是否包含敏感词while (map1.containsKey(str.charAt(i + index))) {//包含敏感词就将str.charAt(i + index)(敏感词)(key)所对应的value赋值给map1map1 = map1.get(str.charAt(i + index));//下标指针加一index++;//判断map1中是否包含结束符if (map1.containsKey('\t')) {//包含结束符代表含有敏感词汇count++;break;}//判断下标指针加一之后是否为特殊字符while (chars.contains(str.charAt(i + index))) {//是特殊字符则下标指针加一index++;}}if (count != 0) {//包含敏感词汇追加*sb.append('*');//i变成(i+下标指针)} else {//不包含敏感词汇追加该字符sb.append(str.charAt(i));//下标指针回到1index = 1;//i变成(i+下标指针)}}return sb.toString();}

        4.完整代码(含测试代码)

package practice;import java.util.*;public class SentiveWord {private static String s1 = "你妈的";private static String s2 = "草泥马";private static String s3 = "日本佬";private static String s4 = "你大爷的";private static String s5 = "泥马的";public static void main(String[] args) {List<String> list = new LinkedList<>();list.add(s1);list.add(s2);list.add(s3);list.add(s4);list.add(s5);Map<Character, Map> map = getSentiveWorld(list);String str = "今天遇见一个 日  本'佬,一万个草 泥'马 的在空中飘过!";String s = replaceContent(str, map);System.out.println(s);}/*** 封装敏感词汇** @param list list列表* @return 返回根节点*/private static Map<Character, Map> getSentiveWorld(List<String> list) {//root:根节点Map<Character, Map> root = new HashMap<>();//node:当前节点Map<Character, Map> node = new HashMap<>();//遍历敏感词列表,取出每一个敏感词for (String word : list) {//遍历每个敏感词前先把node指向rootnode = root;//遍历每一个敏感词的每一个字符for (int i = 0; i < word.length(); i++) {if (node.containsKey(word.charAt(i))) {//如果node包含该字符,node指向该字符(key)所对应的valuenode = node.get(word.charAt(i));} else {//如果node不包含该字符,向node中添加以该字符为(key),next为(value)的map,并把node指向next//next:下一个节点Map<Character, Map> next = new HashMap<>();node.put(word.charAt(i), next);node = next;}}//遍历完每一个敏感词之后都在末尾添加一个结束标志node.put('\t', null);}return root;}//封装特殊字符public static HashSet<Character> chars = new HashSet<Character>() {{add(' ');add('·');add('ˉ');add('ˇ');add('¨');add('々');add('·');add('~');add('‖');add('∶');add('"');add('|');add('〃');add('〔');add('〕');add('〈');add('〉');add('「');add('」');add('『');add('』');add('.');add('[');add(']');add('{');add('}');add('\'');add('【');add('】');}};//    private static char[] chars = {
//            ' ', '·', 'ˉ', 'ˇ', '¨', '々', '~', '‖', '∶', '"', '`',
//            '|', '〃', '〔', '〕', '〈', '〉', '「', '」', '『', '』',
//            '.', '〖', '〗', '【', '】', '[', ']', '{', '}', '\''
//    };/*** 替换内容的方法** @param str 字符串* @return 返回替换之后的字符串*/private static String replaceContent(String str, Map<Character, Map> map) {//下标指针int index;//是否有敏感词汇统计int count;StringBuilder sb = new StringBuilder();//遍历字符串for (int i = 0; i < str.length(); i += index) {index = 0;count = 0;//将封装好敏感词汇的map赋值给map1Map<Character, Map> map1 = map;//判断map1中是否包含敏感词while (map1.containsKey(str.charAt(i + index))) {//包含敏感词就将str.charAt(i + index)(敏感词)(key)所对应的value赋值给map1map1 = map1.get(str.charAt(i + index));//下标指针加一index++;//判断map1中是否包含结束符if (map1.containsKey('\t')) {//包含结束符代表含有敏感词汇count++;break;}//判断下标指针加一之后是否为特殊字符while (chars.contains(str.charAt(i + index))) {//是特殊字符则下标指针加一index++;}}if (count != 0) {//包含敏感词汇追加*sb.append('*');//i变成(i+下标指针)} else {//不包含敏感词汇追加该字符sb.append(str.charAt(i));//下标指针回到1index = 1;//i变成(i+下标指针)}}return sb.toString();}}

        5.测试结果

        有任何问题欢迎在评论区讨论! 


http://www.ppmy.cn/news/520763.html

相关文章

2021年1月25日 星期一 农历四九尾 雾霾 天津

外出整整12个小时&#xff0c;从早上8点40分到下午8点40。早上步行到5号线的成林道地铁站&#xff0c;经5号线倒6号线&#xff0c;再从6号线倒3号线到碰头地华苑地铁站。用时1个小时零15分钟。 夏帆已经驾车在出口处等着了。坐上副驾驶座位的屁股还没被捂热&#xff0c;就被臭脸…

《那些年啊,那些事——一个程序员的奋斗史》六

51 本以为英汉字典的程序已经没有什么大问题了&#xff0c;没想到今天段伏枥想查一个单词&#xff0c;却发现事情根本就不是自己所料想的那么顺利&#xff1a;单词的查找速度太慢&#xff01;这就奇怪了&#xff0c;之前为什么没有发现呢&#xff1f;说起来也让人啼笑皆非…

职场领导想逼你走时,他会用哪些奇招逼你走?

职场领导想逼你走时&#xff0c;他会用哪些奇招逼你走&#xff1f; https://www.wukong.com/answer/6921913495014195459/ 职场领导想逼你走时&#xff0c;他会用哪些奇招逼你走&#xff1f; 贤珉珩 回答 吾师范雎01-26 12:03 关注 1捧杀&#xff0c;表面抬高你&#xff…

大厂可能真不像你想象的那样系列之阿里

大家好&#xff0c;我是道哥&#xff0c;专注于后端java开发&#xff0c;喜欢写作和分享。如果觉得文章对你有用&#xff0c;那就点个赞呗&#xff01;如果能转发那是对道哥最大的支持&#xff01; 道哥有位朋友&#xff0c;去了阿里四年有余&#xff0c;这是一位名副其实的学霸…

css wangeditor 修改_HTML富文本编辑器wangEditor的使用

var E window.wangEditor; var editor new E(#editor) //配置信息 var config editor.customConfig; // 自定义配置颜色(字体颜色、背景色) config.colors [ #000000, #eeece0, #1c487f, #4d80bf, #c24f4a, #8baa4a, #7b5ba1, #46acc8, #f9963b, #ffffff ] //lang配置项配置…

又一个程序员,被抓捕!(真实事件)

这篇文章是公号一位程序员读者的投稿&#xff0c;整个过程就是他自身的经历&#xff0c;文中涉及到的一些敏感点&#xff0c;进行了模糊处理。 文章中的“我”为作者本人。 1 你们张总在吗&#xff1f; 今年的冬天&#xff0c;小明日常到朋友公司蹭个位置坐点自己的事情&#x…

防爆计算机主板,一台不会害羞的矿用防爆电脑,我只服它!

原标题&#xff1a;一台不会害羞的矿用防爆电脑&#xff0c;我只服它&#xff01; 作为新世纪的“弄潮儿” 何止是手机不离手&#xff0c;电脑也是潮流的标记 但是在..... 寒冷环境下的手机毫无征兆的“被冻关机” 在最需要电脑正常运行的时候 它还总是死机、宕机、蓝屏.... 所…

计算机一级安装的软件要钱吗,电脑没装这5个软件,基本算是废了

今天小雷想灵魂拷问一下大家&#xff0c;可否记得自己苦恼于无限电脑弹窗&#xff0c;关了又有&#xff0c;关了又蹦出来&#xff0c;总是关不掉&#xff1f; 当年帮你装机的老铁&#xff0c;是不是直接给你来了个WinRAR&#xff0c;压缩文件的时候看了好多广告&#xff1f; 最…