String algorithms in C efficient text representation and search

Implement practical data structures and algorithms for text search and discover how it is used inside other larger applications. This unique in-depth guide explains string algorithms using the C programming language. String Algorithms in C teaches you the following algorithms and how to use them: cl...

Full description

Bibliographic Details
Main Author: Mailund, Thomas
Format: eBook
Language:English
Published: [California] Apress 2020
Subjects:
Online Access:
Collection: O'Reilly - Collection details see MPG.ReNa
LEADER 03614nmm a2200481 u 4500
001 EB001946623
003 EBX01000000000000001109525
005 00000000000000.0
007 cr|||||||||||||||||||||
008 210123 ||| eng
020 |a 9781484259207 
050 4 |a QA76.9.A43 
100 1 |a Mailund, Thomas 
245 0 0 |a String algorithms in C  |b efficient text representation and search  |c Thomas Mailund 
260 |a [California]  |b Apress  |c 2020 
300 |a 1 online resource 
505 0 |a Includes bibliographical references 
505 0 |a 1. Introduction -- 2. Classical Algorithms for Exact Search -- 3. Suffix Trees -- 4. Suffix Arrays -- 5. Approximate Search -- 6. Conclusions -- Appendix A: Vectors -- Appendix B: Lists -- Appendix C: Queues 
653 |a Computer algorithms / fast 
653 |a Algorithms 
653 |a Computers / Programming Languages / General / bisacsh 
653 |a Programming & scripting languages: general / bicssc 
653 |a Computer algorithms / http://id.loc.gov/authorities/subjects/sh91000149 
653 |a Computers / Programming / Algorithms / bisacsh 
653 |a C (Computer program language) / fast 
653 |a C (Langage de programmation) 
653 |a Algorithmes 
653 |a algorithms / aat 
653 |a Algorithms & data structures / bicssc 
653 |a C (Computer program language) / http://id.loc.gov/authorities/subjects/sh85018532 
653 |a Numerical analysis / bicssc 
041 0 7 |a eng  |2 ISO 639-2 
989 |b OREILLY  |a O'Reilly 
500 |a Includes index 
028 5 0 |a 10.1007/978-1-4842-5920-7 
015 |a GBC0F7663 
776 |z 1484259203 
776 |z 148425919X 
776 |z 9781484259191 
776 |z 9781484259207 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781484259207/?ar  |x Verlag  |3 Volltext 
082 0 |a 005.13 
520 |a Implement practical data structures and algorithms for text search and discover how it is used inside other larger applications. This unique in-depth guide explains string algorithms using the C programming language. String Algorithms in C teaches you the following algorithms and how to use them: classical exact search algorithms; tries and compact tries; suffix trees and arrays; approximative pattern searches; and more. In this book, author Thomas Mailund provides a library with all the algorithms and applicable source code that you can use in your own programs. There are implementations of all the algorithms presented in this book so there are plenty of examples. You'll understand that string algorithms are used in various applications such as image processing, computer vision, text analytics processing from data science to web applications, information retrieval from databases, network security, and much more. What You Will Learn Use classical exact search algorithms including naive search, borders/border search, Knuth-Morris-Pratt, and Boyer-Moor with or without Horspool Search in trees, use tries and compact tries, and work with the Aho-Carasick algorithm Process suffix trees including the use and development of McCreight's algorithm Work with suffix arrays including binary searches; sorting naive constructions; suffix tree construction; skew algorithms; and the Borrows-Wheeler transform (BWT) Deal with enhanced suffix arrays including longest common prefix (LCP) Carry out approximative pattern searches among suffix trees and approximative BWT searches Who This Book Is For Those with at least some prior programming experience with C or Assembly and have at least prior experience with programming algorithms