Browse Wiki & Semantic Web

Jump to: navigation, search
Http://dbpedia.org/resource/Radix tree
  This page has no properties.
hide properties that link here 
  No properties link to this page.
 
http://dbpedia.org/resource/Radix_tree
http://dbpedia.org/ontology/abstract En informatique, un arbre radix ou arbre PEn informatique, un arbre radix ou arbre PATRICIA (pour Practical Algorithm To Retrieve Information Coded In Alphanumeric en anglais et signifiant algorithme commode pour extraire de l'information codée en alphanumérique) est une structure de données compacte permettant de représenter un ensemble de mots adaptée pour la recherche. Il est obtenu à partir d'un arbre préfixe en fusionnant chaque nœud n'ayant qu'un seul fils avec celui-ci. On peut alors étiqueter indifféremment chaque arête par un mot ou bien par une unique lettre. par un mot ou bien par une unique lettre. , In der Informatik ist ein Patricia-Trie (aIn der Informatik ist ein Patricia-Trie (abgeleitet aus dem engl. reTrieval) eine Datenstruktur, genauer eine spezielle Art eines Tries zur gleichzeitigen Speicherung von mehreren Zeichenketten. Seinen Namen verdankt er dem Akronym PATRICIA, das für Practical Algorithm to Retrieve Information Coded in Alphanumeric steht. Er wurde 1968 von veröffentlicht. Der Patricia-Trie zeichnet sich im Gegensatz zum normalen Trie dadurch aus, dass die Daten komprimiert abgespeichert werden. Dazu werden Zeichen, bei denen keine Verzweigung im Baum entsteht, einfach übersprungen und die Anzahl der ausgelassenen Knoten vor dem nächsten auftretenden Zeichen gespeichert. Somit wird gewährleistet, dass ein Suchbegriff eindeutig zugeordnet werden kann. Die Größe von Patricia-Tries hängt somit nicht von der Länge der gespeicherten Schlüsselwerte ab und jeder neue Eintrag kann durch Erstellen von nur einem neuen Knoten und einer neuen Kante eingefügt werden. Somit wachsen sie langsam, auch wenn eine große Anzahl neuer Elemente eingefügt wird. Patricia-Tries können dazu verwendet werden, assoziative Arrays mit Strings als Schlüsseln zu konstruieren. Hiermit wird Speicherplatz für die Schlüssel gespart.d Speicherplatz für die Schlüssel gespart. , Базисное дерево (англ. radix tree, также кБазисное дерево (англ. radix tree, также компактное префиксное дерево, основное дерево, дерево остатков) — это структура данных, представляющая собой оптимизированную по памяти реализацию префиксного дерева. В базисном дереве узел , являющийся единственным потомком узла , сливается с узлом . Временная сложность операций поиска, добавления и удаления элемента из базисного дерева оценивается как , где — длина обрабатываемого элемента. Время работы не зависит от количества элементов в дереве. В отличие от обычных префиксных деревьев, узел базисного дерева может быть помечен как одним элементом (символом, битом и т. д.), так и последовательностью элементов. Это делает базисное дерево более эффективным для небольших наборов строк (особенно если сами строки достаточно длинные), и также для наборов, имеющих небольшое количество длинных префиксов.их небольшое количество длинных префиксов. , В інформатиці, базисне дерево (також компаВ інформатиці, базисне дерево (також компактне префіксне дерево) — структура даних, яка є оптимізованим по пам'яті префіксним деревом, в якому кожна вершина, яка є єдиним нащадком, об'єднується з її батьком. В результаті кількість нащадків кожної внутрішньої вершини не перевищує базис r базисного дерева, де r — натуральне число і степінь x числа 2, x ≥ 1. На відміну від звичайних префіксних дерев, ребра можуть бути позначені як окремими елементами, так і їх послідовностями. Це робить базисні дерева набагато ефективнішими для малих наборів рядків (особливо, якщо рядки мають велику довжину) та для наборів, в яких рядки мають спільний префікс великої довжини. На відміну від звичайних дерев (де ключі масово порівнюються від їх початку до точки нерівності), ключ кожної вершини порівнюється блоками бітів, де кількість бітів в блоці цієї вершини дорівнює базису r базисного дерева. Коли r дорівнює 2, базисне дерево є бінарним (тобто порівнює частину з 1 біта ключа цієї вершини), що мінімізує розрідженість за рахунок максимізації глибини дерева, тобто збільшення до першого неспівпадіння бітів в рядку ключа. Коли r — степінь числа 2 та не менше 4, то базисне дерево є r-нарним, яке зменшує глибину базисного дерева за рахунок потенційної розрідженості.рева за рахунок потенційної розрідженості. , Skompresowane drzewo trie (również: drzewo Patricia, drzewo pozycyjne) – struktura danych przechowująca zbiór ciągów. , 在计算机科学中,基数树(Radix Trie,也叫基数特里树或压缩前缀树)是一种数据在计算机科学中,基数树(Radix Trie,也叫基数特里树或压缩前缀树)是一种数据结构,是一种更节省空间的Trie(前缀树),其中作为唯一子节点的每个节点都与其父节点合并,边既可以表示为元素序列又可以表示为单个元素。 因此每个内部节点的子节点数最多为基数树的基数r ,其中r为正整数,x为2的幂,x≥1,这使得基数树更适用于对于较小的集合(尤其是字符串很长的情况下)和有很长相同前缀的字符串集合。 基数树的查找方式也与常规树不同(常规的树查找一开始就对整个键进行比较,直到不相同为止),基数树查找时节点时,对于节点上的键都按块进行逐块比较,其中该节点中块的长度是基数r; 当r为2时,基数树为二进制的(即该节点的键的长度为1比特位),能最大程度地减小树的深度来最小化稀疏性(最大限度地合并键中没有分叉的节点)。 当r≥4且为2的整数次幂时,基数树是r元基数树,能以潜在的稀疏性为代价降低基数树的深度。≥4且为2的整数次幂时,基数树是r元基数树,能以潜在的稀疏性为代价降低基数树的深度。 , 基数木(英: Radix tree)またはパトリシア木(英: Patricia tr基数木(英: Radix tree)またはパトリシア木(英: Patricia tree)とは、文字列集合を格納するトライ木に基づく特殊化された集合データ構造である。パトリシアトライ(英: Patricia trie)とも。通常のトライ木に比較すると、基数木の辺は単一の文字ではなく文字の並びでラベル付けされる。それは、文字列でもよいし、整数やIPアドレスなどを表すビット列でもよい。辞書式順序を適用できるオブジェクトの並びなら何でもラベルとして使用できる。基数木と言った場合、整数を格納する木構造のみを指すことが多く、パトリシア木といった場合は特に格納するデータを限定しないが、基本的に構造や動作原理は同じである。といった場合は特に格納するデータを限定しないが、基本的に構造や動作原理は同じである。 , A árvore PATRICIA é uma representação compA árvore PATRICIA é uma representação compacta de uma Trie onde os nós que teriam apenas um filho são agrupados nos seus antecessores. É comum que as árvores Trie possuam um grupo disperso de chaves, desse modo, muitos nós possuem apenas um descendente. Isto faz com que as Trie tenham um custo grande de espaço. Uma Trie usa cada uma das partes de uma chave, por vez, para determinar a sub-árvore. Por outro lado, a árvore PATRICIA escolhe um elemento da chave (armazenando a sua posição) para determinar a sub-árvore. Isso remove a necessidade de nós com apenas um descendente. Concebido por , PATRICIA é um algoritmo para realização de buscas em árvores com as chaves dos nós representadas em binário, sem armazenar as chaves nos nós. O nome é um acrônimo de “Practical Algorithm To Retrieve Information Coded In Alphanumeric”, e o método é particularmente útil para tratamento de chaves de tamanho variável extremamente longas, tais como títulos e frases. No caso de pesquisas analíticas, os dados podem tirar proveito deste método desde que as informações sejam armazenadas como cadeias de texto. Uma restrição dessas árvores é a necessidade de não haver um elemento que seja prefixo de outro, o que pode facilmente ser obtido se necessário. pode facilmente ser obtido se necessário. , In computer science, a radix tree (also raIn computer science, a radix tree (also radix trie or compact prefix tree or compressed trie) is a data structure that represents a space-optimized trie (prefix tree) in which each node that is the only child is merged with its parent. The result is that the number of children of every internal node is at most the radix r of the radix tree, where r is a positive integer and a power x of 2, having x ≥ 1. Unlike regular trees, edges can be labeled with sequences of elements as well as single elements. This makes radix trees much more efficient for small sets (especially if the strings are long) and for sets of strings that share long prefixes. Unlike regular trees (where whole keys are compared en masse from their beginning up to the point of inequality), the key at each node is compared chunk-of-bits by chunk-of-bits, where the quantity of bits in that chunk at that node is the radix r of the radix trie. When r is 2, the radix trie is binary (i.e., compare that node's 1-bit portion of the key), which minimizes sparseness at the expense of maximizing trie depth—i.e., maximizing up to conflation of nondiverging bit-strings in the key. When r ≥ 4 is a power of 2, then the radix trie is an r-ary trie, which lessens the depth of the radix trie at the expense of potential sparseness. As an optimization, edge labels can be stored in constant size by using two pointers to a string (for the first and last elements). Note that although the examples in this article show strings as sequences of characters, the type of the string elements can be chosen arbitrarily; for example, as a bit or byte of the string representation when using multibyte character encodings or Unicode. multibyte character encodings or Unicode. , Komprimovaná trie je datová struktura, pojKomprimovaná trie je datová struktura, pojem z oboru matematické informatiky. Jedná se o strukturou podobou triím, ale zatímco u trie je na každé hraně jen jediný znak, u komprimované trie jich tam může být víc, pokud jsou společné všem potomkům daného vrcholu. Oproti běžným triím tak použití komprimované trie může šetřit počítačovou paměť. Tento typ struktury má několik alternativních názvů, mj. Patricia-trie, přičemž s názvem PATRICIA coby zkratkou svého stejnojmenného článku je zavedl v roce 1968 . Komprimované trie se používají mj. pro realizaci asociativních polí.vají mj. pro realizaci asociativních polí.
http://dbpedia.org/ontology/thumbnail http://commons.wikimedia.org/wiki/Special:FilePath/Patricia_trie.svg?width=300 +
http://dbpedia.org/ontology/wikiPageExternalLink https://github.com/agl/critbit + , https://db.in.tum.de/~leis/papers/ART.pdf + , https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/lib/radix-tree.c + , https://github.com/antirez/rax + , https://github.com/armon/libart + , https://nim-lang.org/docs/critbits.html + , http://www.codeproject.com/KB/string/PatriciaTrieTemplateClass.aspx + , https://hackage.haskell.org/package/containers/docs/Data-IntMap-Internal.html + , https://hackage.haskell.org/package/containers/docs/src/Data.IntMap.Internal.html + , http://cprops.sourceforge.net/gen/docs/trie_8c-source.html + , http://www.csse.monash.edu.au/~lloyd/tildeAlgDS/Tree/PATRICIA/ + , https://code.google.com/p/patl/ + , https://code.google.com/p/concurrent-trees/ + , http://www.lri.fr/~filliatr/ftp/ocaml/ds + , https://code.google.com/p/hat-trie + , http://paratechnical.blogspot.com/2011/03/radix-tree-implementation-in-c.html + , https://gcc.gnu.org/onlinedocs/libstdc%2B%2B/ext/pb_ds/trie_based_containers.html + , https://redis.io/ + , http://code.dogmap.org/kart/ + , http://bxr.su/f/sys/net/radix.h + , https://github.com/rkapsi/patricia-trie + , http://cprops.sourceforge.net + , https://xlinux.nist.gov/dads/HTML/patriciatree.html + , https://github.com/balena/radixdb + , http://cr.yp.to/critbit.html + , https://lwn.net/Articles/175432/ +
http://dbpedia.org/ontology/wikiPageID 1481659
http://dbpedia.org/ontology/wikiPageLength 18536
http://dbpedia.org/ontology/wikiPageRevisionID 1105756012
http://dbpedia.org/ontology/wikiPageWikiLink http://dbpedia.org/resource/Donald_Knuth + , http://dbpedia.org/resource/Information_retrieval + , http://dbpedia.org/resource/Prefix_hash_tree + , http://dbpedia.org/resource/NIST_Dictionary_of_Algorithms_and_Data_Structures + , http://dbpedia.org/resource/Technical_University_of_Munich + , http://dbpedia.org/resource/Interface_%28computer_science%29 + , http://dbpedia.org/resource/Category:Trees_%28data_structures%29 + , http://dbpedia.org/resource/Deterministic_finite_automata + , http://dbpedia.org/resource/Total_ordering + , http://dbpedia.org/resource/Thomas_Neumann + , http://dbpedia.org/resource/Burstsort + , http://dbpedia.org/resource/Hash_trie + , http://dbpedia.org/resource/Judy_array + , http://dbpedia.org/resource/Extendible_hashing + , http://dbpedia.org/resource/IP_address + , http://dbpedia.org/resource/Associative_array + , http://dbpedia.org/resource/Unicode + , http://dbpedia.org/resource/Data_structure + , http://dbpedia.org/resource/Deterministic_acyclic_finite_state_automaton + , http://dbpedia.org/resource/Inverted_index + , http://dbpedia.org/resource/Search_algorithm + , http://dbpedia.org/resource/Trie + , http://dbpedia.org/resource/The_Art_of_Computer_Programming + , http://dbpedia.org/resource/Huffman_coding + , http://dbpedia.org/resource/Hash_table + , http://dbpedia.org/resource/Radix + , http://dbpedia.org/resource/Internet_Protocol + , http://dbpedia.org/resource/Daniel_J._Bernstein + , http://dbpedia.org/resource/HAT-trie + , http://dbpedia.org/resource/Ternary_search_tries + , http://dbpedia.org/resource/Memory_Optimization + , http://dbpedia.org/resource/Balanced_trees + , http://dbpedia.org/resource/Lule%C3%A5_algorithm + , http://dbpedia.org/resource/File:An_example_of_how_to_find_a_string_in_a_Patricia_trie.png + , http://dbpedia.org/resource/Multibyte_character + , http://dbpedia.org/resource/Alfons_Kemper + , http://dbpedia.org/resource/Hash_array_mapped_trie + , http://dbpedia.org/resource/Prefix_tree + , http://dbpedia.org/resource/File:Patricia_trie.svg + , http://dbpedia.org/resource/Salvatore_Sanfilippo + , http://dbpedia.org/resource/Category:String_data_structures + , http://dbpedia.org/resource/Computer_science + , http://dbpedia.org/resource/Hashtable + , http://dbpedia.org/resource/Serialization + , http://dbpedia.org/resource/Routing + , http://dbpedia.org/resource/Monash_University +
http://dbpedia.org/property/wikiPageUsesTemplate http://dbpedia.org/resource/Template:Anchor + , http://dbpedia.org/resource/Template:Commons_category + , http://dbpedia.org/resource/Template:Reflist + , http://dbpedia.org/resource/Template:Div_col + , http://dbpedia.org/resource/Template:Div_col_end + , http://dbpedia.org/resource/Template:Portal + , http://dbpedia.org/resource/Template:Mvar + , http://dbpedia.org/resource/Template:Short_description + , http://dbpedia.org/resource/Template:CS-Trees +
http://purl.org/dc/terms/subject http://dbpedia.org/resource/Category:Trees_%28data_structures%29 + , http://dbpedia.org/resource/Category:String_data_structures +
http://purl.org/linguistics/gold/hypernym http://dbpedia.org/resource/Structure +
http://www.w3.org/ns/prov#wasDerivedFrom http://en.wikipedia.org/wiki/Radix_tree?oldid=1105756012&ns=0 +
http://xmlns.com/foaf/0.1/depiction http://commons.wikimedia.org/wiki/Special:FilePath/Patricia_trie.svg + , http://commons.wikimedia.org/wiki/Special:FilePath/An_example_of_how_to_find_a_string_in_a_Patricia_trie.png + , http://commons.wikimedia.org/wiki/Special:FilePath/Inserting_the_string_%27water%27_into_a_Patricia_trie.png + , http://commons.wikimedia.org/wiki/Special:FilePath/Inserting_the_word_%27team%27_into_a_Patricia_trie_with_a_split.png + , http://commons.wikimedia.org/wiki/Special:FilePath/Insert_%27slower%27_with_a_null_node_into_a_Patricia_trie.png + , http://commons.wikimedia.org/wiki/Special:FilePath/Insert_%27test%27_into_a_Patricia_trie_when_%27tester%27_exists.png + , http://commons.wikimedia.org/wiki/Special:FilePath/Insert_%27toast%27_into_a_Patricia_trie_with_a_split_and_a_move.png +
http://xmlns.com/foaf/0.1/isPrimaryTopicOf http://en.wikipedia.org/wiki/Radix_tree +
owl:sameAs http://ja.dbpedia.org/resource/%E5%9F%BA%E6%95%B0%E6%9C%A8 + , http://pt.dbpedia.org/resource/%C3%81rvore_Patricia + , http://uk.dbpedia.org/resource/%D0%91%D0%B0%D0%B7%D0%B8%D1%81%D0%BD%D0%B5_%D0%B4%D0%B5%D1%80%D0%B5%D0%B2%D0%BE + , http://www.wikidata.org/entity/Q1356176 + , http://yago-knowledge.org/resource/Radix_tree + , http://ru.dbpedia.org/resource/%D0%A1%D0%B6%D0%B0%D1%82%D0%BE%D0%B5_%D0%BF%D1%80%D0%B5%D1%84%D0%B8%D0%BA%D1%81%D0%BD%D0%BE%D0%B5_%D0%B4%D0%B5%D1%80%D0%B5%D0%B2%D0%BE + , http://sr.dbpedia.org/resource/%D0%A0%D0%B0%D0%B4%D0%B8%D0%BA%D1%81_%D1%81%D1%82%D0%B0%D0%B1%D0%BB%D0%BE + , http://de.dbpedia.org/resource/Patricia-Trie + , http://cs.dbpedia.org/resource/Komprimovan%C3%A1_trie + , http://fa.dbpedia.org/resource/%D8%AF%D8%B1%D8%AE%D8%AA_%D9%85%D8%A8%D9%86%D8%A7 + , http://zh.dbpedia.org/resource/%E5%9F%BA%E6%95%B0%E6%A0%91 + , http://dbpedia.org/resource/Radix_tree + , http://fr.dbpedia.org/resource/Arbre_radix + , http://th.dbpedia.org/resource/%E0%B8%95%E0%B9%89%E0%B8%99%E0%B9%84%E0%B8%A1%E0%B9%89%E0%B9%80%E0%B8%A3%E0%B8%94%E0%B8%B4%E0%B8%81%E0%B8%8B%E0%B9%8C + , https://global.dbpedia.org/id/Mhsp + , http://pl.dbpedia.org/resource/Skompresowane_drzewo_trie + , http://rdf.freebase.com/ns/m.054xxy +
rdf:type http://dbpedia.org/ontology/Building + , http://dbpedia.org/class/yago/WikicatDataStructures + , http://dbpedia.org/class/yago/Abstraction100002137 + , http://dbpedia.org/class/yago/DataStructure105728493 + , http://dbpedia.org/class/yago/PsychologicalFeature100023100 + , http://dbpedia.org/class/yago/Cognition100023271 + , http://dbpedia.org/class/yago/Structure105726345 + , http://dbpedia.org/class/yago/Arrangement105726596 + , http://dbpedia.org/class/yago/WikicatStringDataStructures +
rdfs:comment Базисное дерево (англ. radix tree, также кБазисное дерево (англ. radix tree, также компактное префиксное дерево, основное дерево, дерево остатков) — это структура данных, представляющая собой оптимизированную по памяти реализацию префиксного дерева. В базисном дереве узел , являющийся единственным потомком узла , сливается с узлом . Временная сложность операций поиска, добавления и удаления элемента из базисного дерева оценивается как , где — длина обрабатываемого элемента. Время работы не зависит от количества элементов в дереве. зависит от количества элементов в дереве. , 在计算机科学中,基数树(Radix Trie,也叫基数特里树或压缩前缀树)是一种数据在计算机科学中,基数树(Radix Trie,也叫基数特里树或压缩前缀树)是一种数据结构,是一种更节省空间的Trie(前缀树),其中作为唯一子节点的每个节点都与其父节点合并,边既可以表示为元素序列又可以表示为单个元素。 因此每个内部节点的子节点数最多为基数树的基数r ,其中r为正整数,x为2的幂,x≥1,这使得基数树更适用于对于较小的集合(尤其是字符串很长的情况下)和有很长相同前缀的字符串集合。 基数树的查找方式也与常规树不同(常规的树查找一开始就对整个键进行比较,直到不相同为止),基数树查找时节点时,对于节点上的键都按块进行逐块比较,其中该节点中块的长度是基数r; 当r为2时,基数树为二进制的(即该节点的键的长度为1比特位),能最大程度地减小树的深度来最小化稀疏性(最大限度地合并键中没有分叉的节点)。 当r≥4且为2的整数次幂时,基数树是r元基数树,能以潜在的稀疏性为代价降低基数树的深度。≥4且为2的整数次幂时,基数树是r元基数树,能以潜在的稀疏性为代价降低基数树的深度。 , In computer science, a radix tree (also raIn computer science, a radix tree (also radix trie or compact prefix tree or compressed trie) is a data structure that represents a space-optimized trie (prefix tree) in which each node that is the only child is merged with its parent. The result is that the number of children of every internal node is at most the radix r of the radix tree, where r is a positive integer and a power x of 2, having x ≥ 1. Unlike regular trees, edges can be labeled with sequences of elements as well as single elements. This makes radix trees much more efficient for small sets (especially if the strings are long) and for sets of strings that share long prefixes. sets of strings that share long prefixes. , Komprimovaná trie je datová struktura, pojKomprimovaná trie je datová struktura, pojem z oboru matematické informatiky. Jedná se o strukturou podobou triím, ale zatímco u trie je na každé hraně jen jediný znak, u komprimované trie jich tam může být víc, pokud jsou společné všem potomkům daného vrcholu. Oproti běžným triím tak použití komprimované trie může šetřit počítačovou paměť. Tento typ struktury má několik alternativních názvů, mj. Patricia-trie, přičemž s názvem PATRICIA coby zkratkou svého stejnojmenného článku je zavedl v roce 1968 . Komprimované trie se používají mj. pro realizaci asociativních polí.vají mj. pro realizaci asociativních polí. , В інформатиці, базисне дерево (також компаВ інформатиці, базисне дерево (також компактне префіксне дерево) — структура даних, яка є оптимізованим по пам'яті префіксним деревом, в якому кожна вершина, яка є єдиним нащадком, об'єднується з її батьком. В результаті кількість нащадків кожної внутрішньої вершини не перевищує базис r базисного дерева, де r — натуральне число і степінь x числа 2, x ≥ 1. На відміну від звичайних префіксних дерев, ребра можуть бути позначені як окремими елементами, так і їх послідовностями. Це робить базисні дерева набагато ефективнішими для малих наборів рядків (особливо, якщо рядки мають велику довжину) та для наборів, в яких рядки мають спільний префікс великої довжини.ки мають спільний префікс великої довжини. , In der Informatik ist ein Patricia-Trie (aIn der Informatik ist ein Patricia-Trie (abgeleitet aus dem engl. reTrieval) eine Datenstruktur, genauer eine spezielle Art eines Tries zur gleichzeitigen Speicherung von mehreren Zeichenketten. Seinen Namen verdankt er dem Akronym PATRICIA, das für Practical Algorithm to Retrieve Information Coded in Alphanumeric steht. Er wurde 1968 von veröffentlicht. Patricia-Tries können dazu verwendet werden, assoziative Arrays mit Strings als Schlüsseln zu konstruieren. Hiermit wird Speicherplatz für die Schlüssel gespart.d Speicherplatz für die Schlüssel gespart. , Skompresowane drzewo trie (również: drzewo Patricia, drzewo pozycyjne) – struktura danych przechowująca zbiór ciągów. , 基数木(英: Radix tree)またはパトリシア木(英: Patricia tr基数木(英: Radix tree)またはパトリシア木(英: Patricia tree)とは、文字列集合を格納するトライ木に基づく特殊化された集合データ構造である。パトリシアトライ(英: Patricia trie)とも。通常のトライ木に比較すると、基数木の辺は単一の文字ではなく文字の並びでラベル付けされる。それは、文字列でもよいし、整数やIPアドレスなどを表すビット列でもよい。辞書式順序を適用できるオブジェクトの並びなら何でもラベルとして使用できる。基数木と言った場合、整数を格納する木構造のみを指すことが多く、パトリシア木といった場合は特に格納するデータを限定しないが、基本的に構造や動作原理は同じである。といった場合は特に格納するデータを限定しないが、基本的に構造や動作原理は同じである。 , En informatique, un arbre radix ou arbre PEn informatique, un arbre radix ou arbre PATRICIA (pour Practical Algorithm To Retrieve Information Coded In Alphanumeric en anglais et signifiant algorithme commode pour extraire de l'information codée en alphanumérique) est une structure de données compacte permettant de représenter un ensemble de mots adaptée pour la recherche. Il est obtenu à partir d'un arbre préfixe en fusionnant chaque nœud n'ayant qu'un seul fils avec celui-ci. On peut alors étiqueter indifféremment chaque arête par un mot ou bien par une unique lettre. par un mot ou bien par une unique lettre. , A árvore PATRICIA é uma representação compA árvore PATRICIA é uma representação compacta de uma Trie onde os nós que teriam apenas um filho são agrupados nos seus antecessores. É comum que as árvores Trie possuam um grupo disperso de chaves, desse modo, muitos nós possuem apenas um descendente. Isto faz com que as Trie tenham um custo grande de espaço. Uma Trie usa cada uma das partes de uma chave, por vez, para determinar a sub-árvore. Por outro lado, a árvore PATRICIA escolhe um elemento da chave (armazenando a sua posição) para determinar a sub-árvore. Isso remove a necessidade de nós com apenas um descendente.essidade de nós com apenas um descendente.
rdfs:label Komprimovaná trie , 基数木 , Árvore Patricia , Patricia-Trie , 基数树 , Radix tree , Сжатое префиксное дерево , Базисне дерево , Arbre radix , Skompresowane drzewo trie
hide properties that link here 
http://dbpedia.org/resource/Radix_%28disambiguation%29 + http://dbpedia.org/ontology/wikiPageDisambiguates
http://dbpedia.org/resource/Patricia_tree + , http://dbpedia.org/resource/Patricia_trie + , http://dbpedia.org/resource/Crit_bit_tree + , http://dbpedia.org/resource/Crit-bit_tree + , http://dbpedia.org/resource/PATRICIA + , http://dbpedia.org/resource/PATRICIA_tree + , http://dbpedia.org/resource/PATRICIA_trie + , http://dbpedia.org/resource/Radix_trie + , http://dbpedia.org/resource/Radixtree + , http://dbpedia.org/resource/Crit_bit_trie + , http://dbpedia.org/resource/Patricia-trie + , http://dbpedia.org/resource/Patricia_trees + http://dbpedia.org/ontology/wikiPageRedirects
http://dbpedia.org/resource/EXtremeDB + , http://dbpedia.org/resource/T-tree + , http://dbpedia.org/resource/Morphological_parsing + , http://dbpedia.org/resource/Trie + , http://dbpedia.org/resource/Perst + , http://dbpedia.org/resource/Forwarding_plane + , http://dbpedia.org/resource/Radix_sort + , http://dbpedia.org/resource/List_of_data_structures + , http://dbpedia.org/resource/Binary_decision_diagram + , http://dbpedia.org/resource/Knot_DNS + , http://dbpedia.org/resource/Associative_array + , http://dbpedia.org/resource/Linux_kernel + , http://dbpedia.org/resource/Hash_array_mapped_trie + , http://dbpedia.org/resource/Array_%28data_structure%29 + , http://dbpedia.org/resource/Merkle_tree + , http://dbpedia.org/resource/Patricia_tree + , http://dbpedia.org/resource/Judy_array + , http://dbpedia.org/resource/Radix_%28disambiguation%29 + , http://dbpedia.org/resource/Patricia_trie + , http://dbpedia.org/resource/Crit_bit_tree + , http://dbpedia.org/resource/Crit-bit_tree + , http://dbpedia.org/resource/PATRICIA + , http://dbpedia.org/resource/PATRICIA_tree + , http://dbpedia.org/resource/PATRICIA_trie + , http://dbpedia.org/resource/Radix_trie + , http://dbpedia.org/resource/Radixtree + , http://dbpedia.org/resource/Crit_bit_trie + , http://dbpedia.org/resource/Patricia-trie + , http://dbpedia.org/resource/Patricia_trees + , http://dbpedia.org/resource/Compact_prefix_tree + http://dbpedia.org/ontology/wikiPageWikiLink
http://en.wikipedia.org/wiki/Radix_tree + http://xmlns.com/foaf/0.1/primaryTopic
http://dbpedia.org/resource/Radix_tree + owl:sameAs
 

 

Enter the name of the page to start semantic browsing from.