Arkanjo 0.1
A tool for find code duplicated functions in codebases
Loading...
Searching...
No Matches
counter_duplication_code_trie.hpp File Reference

Trie-based code duplication counter. More...

#include <string>
#include <vector>
#include <map>
#include "../base/utils.hpp"
+ Include dependency graph for counter_duplication_code_trie.hpp:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  Counter_Duplication_Code_Trie
 Trie structure for hierarchical duplication counting. More...
 

Detailed Description

Trie-based code duplication counter.

Implements a trie structure where nodes represent folders to enable hierarchical counting of duplicated lines across the codebase. Implements a TRIE where the nodes are folders, this enable the project to count the number of duplicated lines per folde in the codebase.

Definition in file counter_duplication_code_trie.hpp.