TAILIEUCHUNG - Thuật toán Algorithms (Phần 28)

Tham khảo tài liệu 'thuật toán algorithms (phần 28)', khoa học tự nhiên, toán học phục vụ nhu cầu học tập, nghiên cứu và làm việc hiệu quả | PATTERN MATCHING 263 is the number of the actual initial state. Note the special representation used for null states with 0 or 1 exits. Since we often will want to access states just by number the most suitable organization for the machine is to use the array representation. We ll use the three arrays ch array of char nextl next 2 array of integer Here Mmax is the maximum number of states twice the maximum pattern length . It would be possible to get by with two-thirds this amount of space since each state really uses only two pieces of information but we ll forsake this improvement for the sake of clarity and also because pattern descriptions are not likely to be particularly long. We ve seen how to build up from regular expression pattern descriptions and how such machines might be represented as arrays. However to write a program to do the translation from a regular expression to the corresponding nondeterministic machine representation automatically is quite another matter. In fact even writing a program to determine if a given regular expression is legal is challenging for the uninitiated. In the next chapter we ll study this operation called parsing in much more detail. For the moment we ll assume that this translation has been done so that we have available the ch nextl and next2 arrays representing a particular nondeterministic machine which corresponds to the regular expression pattern description of interest. Simulating the Machine The last step in the development of a. general regular-expression matching algorithm is to write a program which somehow simulates the operation of a nondeterministic pattern-matching machine. The idea of writing a program which can guess the right answer seems ridiculous. However in this case it turns out that we can keep track of all possible matches in a systematic way so that we do eventually encounter the correct one. One possibility would be to develop a recursive program which mimics the nondeterministic .

TỪ KHÓA LIÊN QUAN
TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.