Java implementation and analysis of Aho-corasick algorithm

Source: Internet
Author: User

The Aho-corasick algorithm is referred to as the AC algorithm, by preprocessing the pattern string to determine the finite state automata, the scanned text can be finished again. Its complexity is O (n), which is independent of the number and length of the pattern string. The mind automata accepts characters in the order of text characters, and the state transitions occur. These states cache the "Success by character transfer (but not the end of the pattern string)", "succeeded by character transfer (end of pattern string)", "failed by character transfer" Three cases of jump and output, thus reducing complexity. There are three core functions in the basic structure AC algorithm, namely: success; Successfully transferred to another State (also called a goto table or success table) failure; Not...

Read on : Java Implementation and analysis of code farm»aho-corasick algorithm

original link : http://www.hankcs.com/program/algorithm/implementation-and-analysis-of-aho-corasick-algorithm-in-java.html

Java implementation and analysis of Aho-corasick algorithm

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.