알고리즘&자료구조/문자열 처리(2)
-
알고리즘 - 다중 문자열 패턴 검색 알고리즘 아호 코라식(Aho-corasick)
https://github.com/robert-bor/aho-corasick/tree/master/src/main/java/org/ahocorasick/trie robert-bor/aho-corasick Java implementation of the Aho-Corasick algorithm for efficient string matching - robert-bor/aho-corasick github.com https://www.slideshare.net/ssuser81b91b/ahocorasick-algorithm Aho-Corasick Algorithm(아호 코라식 알고리즘) Aho-Corasick Algorithm 장홍준 hongjun7@korea.ac.kr www.slideshare.net
2020.06.21 -
문자열 처리 - 명령 프롬프트(백준 1032번)
1. 문자열 처리 - 명령 프롬프트(백준 1032번) 2.문제 풀이12345678910111213141516171819202122232425262728293031323334353637383940414243package _317324; import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import java.util.Arrays; public class Baekjoon1032Cmd { static String[] strArr; static int count; static String str=""; static boolean isSame=true; public static void main(Strin..
2018.03.31