3 // Copyright (C) 2005-2013 Free Software Foundation, Inc.
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the terms
7 // of the GNU General Public License as published by the Free Software
8 // Foundation; either version 3, or (at your option) any later
11 // This library is distributed in the hope that it will be useful, but
12 // WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // General Public License for more details.
16 // You should have received a copy of the GNU General Public License
17 // along with this library; see the file COPYING3. If not see
18 // <http://www.gnu.org/licenses/>.
21 // Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL.
23 // Permission to use, copy, modify, sell, and distribute this software
24 // is hereby granted without fee, provided that the above copyright
25 // notice appears in all copies, and that both that copyright notice
26 // and this permission notice appear in supporting documentation. None
27 // of the above authors, nor IBM Haifa Research Laboratories, make any
28 // representation about the suitability of this software for any
29 // purpose. It is provided "as is" without express or implied
33 * @file trie_dna_example.cpp
34 * An example showing how to use a trie for storing DNA strings.
38 * This example shows how to use a PATRICIA trie for storing
39 DNA strings. The main point is writing element-access traits
46 #include <ext/pb_ds/assoc_container.hpp>
47 #include <ext/pb_ds/trie_policy.hpp>
50 using namespace __gnu_pbds
;
52 // DNA is represented by a string.
55 // Following is an element access traits for a DNA string.
56 struct dna_string_access_traits
59 typedef size_t size_type
;
60 typedef dna_t key_type
;
61 typedef const key_type
& key_const_reference
;
63 typedef string::const_iterator const_iterator
;
67 // Number of distinct elements. This is 4 = |{'A', 'C', 'G', 'T'}|
71 // Returns a const_iterator to the firstelement of r_key.
72 inline static const_iterator
73 begin(key_const_reference r_key
)
74 { return r_key
.begin(); }
76 // Returns a const_iterator to the after-lastelement of r_key.
77 inline static const_iterator
78 end(key_const_reference r_key
)
79 { return r_key
.end(); }
81 // Maps an element to a position.
101 // A PATRICIA trie with DNA string element-access traits.
102 typedef dna_string_access_traits traits_type
;
103 typedef trie
<dna_t
, string
, traits_type
> trie_type
;
109 // Now map some DNAs to diseases in namespace STD.
110 t
["ACCGGTTACTGGTA"] = "gonorrhea";
111 t
["CCGTTATCGGTA"] = "syphlis";
113 // Check gonorrhea already contracted.
114 assert(t
.find("ACCGGTTACTGGTA") != t
.end());