Skip to content

Commit 3ef48bf

Browse files
committed
Update wavelet tree
1 parent d6c7e4b commit 3ef48bf

File tree

6 files changed

+79
-0
lines changed

6 files changed

+79
-0
lines changed
-12 KB
Binary file not shown.

wavelet-tree/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ find_package(Threads)
1010

1111
add_subdirectory(src bin)
1212

13+
add_subdirectory(test)

wavelet-tree/README.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Wavelet Tree
2+
3+
## Task
4+
5+
The Wavelet Tree is a succinct data structure to store strings in compressed space. It generalizes the Rank and Select operations defined on bitvectors to arbitrary alphabets. You could investigate by yourself on how wavelet tree works and what are rank/select operations.
6+
7+
The coding task is to finish a wavelet tree implementation: privide the `Quantile Range` interface which returns the K-th smallest value in the subarray. The function definition could be seen in the source code provided. Additionally, you need to provide unit test to guarantee the correctness of your implementation.
8+
9+
10+
## Submission
11+
12+
Submit a single compressed tar file called submission.tar.gz and send it to yingfeng dot zhang AT gmail dot com.
13+
14+
## Rules
15+
16+
- Please keep your solution private and not make it publicly available.

wavelet-tree/test/CMakeLists.txt

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
cmake_minimum_required(VERSION 3.10)
2+
3+
# Download and unpack googletest at configure time
4+
configure_file(./GTest.CMakeLists.txt googletest-download/CMakeLists.txt)
5+
execute_process(COMMAND "${CMAKE_COMMAND}" -G "${CMAKE_GENERATOR}" .
6+
WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/test/googletest-download")
7+
execute_process(COMMAND "${CMAKE_COMMAND}" --build .
8+
WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/test/googletest-download")
9+
10+
# Prevent GoogleTest from overriding our compiler/linker options
11+
# when building with Visual Studio
12+
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
13+
14+
# Add googletest directly to our build. This adds
15+
# the following targets: gtest, gtest_main, gmock
16+
# and gmock_main
17+
add_subdirectory("${CMAKE_BINARY_DIR}/googletest-src"
18+
"${CMAKE_BINARY_DIR}/googletest-build")
19+
20+
# The gtest/gmock targets carry header search path
21+
# dependencies automatically when using CMake 2.8.11 or
22+
# later. Otherwise we have to add them here ourselves.
23+
if (CMAKE_VERSION VERSION_LESS 2.8.11)
24+
include_directories("${gtest_SOURCE_DIR}/include"
25+
"${gmock_SOURCE_DIR}/include")
26+
endif ()
27+
28+
project(DBProgrammingCompetition)
29+
30+
31+
enable_testing()
32+
33+
file(GLOB_RECURSE
34+
TEST_SOURCE_FILES
35+
CONFIGURE_DEPENDS
36+
*.cpp
37+
)
38+
39+
add_executable(tester ${TEST_SOURCE_FILES})
40+
target_link_libraries(tester gtest gtest_main pthread)
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
cmake_minimum_required(VERSION 3.10)
2+
3+
project(googletest-download NONE)
4+
5+
include(ExternalProject)
6+
ExternalProject_Add(googletest
7+
GIT_REPOSITORY https://github.com/google/googletest.git
8+
GIT_TAG 703bd9caab50b139428cea1aaff9974ebee5742e
9+
SOURCE_DIR "${CMAKE_BINARY_DIR}/googletest-src"
10+
BINARY_DIR "${CMAKE_BINARY_DIR}/googletest-build"
11+
CONFIGURE_COMMAND ""
12+
BUILD_COMMAND ""
13+
INSTALL_COMMAND ""
14+
TEST_COMMAND ""
15+
)

wavelet-tree/test/main.cpp

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#include "gtest/gtest.h"
2+
3+
int main(int argc, char **argv) {
4+
testing::InitGoogleTest(&argc, argv);
5+
return RUN_ALL_TESTS();
6+
}
7+

0 commit comments

Comments
 (0)