As a software engineer who has lack of math knowledge, I want to solve some numeric computting problem like how to fit curve from a list of 2D points, how to find the intersection points of two curve, how to solve some function like a + a_1x + a_2 xx + a_3 xx*x = 0 ?
Seems like these are very simple math problem right ? but I found that there no explicity c++ library is help to easily solve these problem, but there a lot of library like ALGLIB, lapck, eigen as so on some how have ability to solve these problem, but you need have a lot of math knowledge to find them out.
So, this project is aim to solve problem like I said at first segment by ALGLIB and try to give out very easily understand API to help who have no idea about UBLAS, Linear blablabla, Eigenvalues???, deep numeric computting blablabla to solve your problem.
I was a start-up company CTO, at least some days ago, because some tough reason I need start find a job, so a lot of baisc knowledage need to self-check, I will push some very simple coding test and continue add some basic mathematical library usage for you.
this file use to declare needed data structure like: Binary-Tree, Linked-List, Graph ....
this file use to declare robotics related data structure like: Point, Pose, Area ...
this file use to implement small utils like print utils, debug utils, visualization utils ...
ID | Hard-Level | Key Point | File |
---|---|---|---|
0 | ** | BFS traversing | src/bfs_traversing.cpp |
1 | *** | DFS traversing and recall | src/dfs_all_path.cpp |
2 | ** | DFS traversing | src/dfs_traversing.cpp |
3 | *** | BFS and Stack | src/is_binary_tree_symmetrical.cpp |
4 | *** | Reconstruct Binary-Tree | src/reconstruct_binary_tree.cpp |
ID | Hard-Level | Key Point | File |
---|---|---|---|
0 | * | Linked-List Reversing | src/reverse_link_list.cpp |
ID | Hard-Level | Key Point | File |
---|---|---|---|
0 | *** | Quick Sort | src/quick_sort.cpp |
ID | Hard-Level | Key Point | File |
---|---|---|---|
0 | *** | Binary-Search | src/double_bi_search.cpp |
1 | *** | Dynamic-Programming in Array | src/max_sum_of_sub_array.cpp |
2 | *** | string permutation in IP adress | src/string_to_possible_ip.cpp |
ID | Hard-Level | Key Point | File |
---|---|---|---|
0 | *** | Find All Path | src/matrix_all_path.cpp Unfinished |
1 | ** | Dynamic-Programming | src/matrix_min_sum_path.cpp |
2 | ** | DFS in Matrix | src/simple_path_search.cpp |
3 | *** | Matrix computation | src/matrix.cpp |
ID | Hard-Level | Key Point | File |
---|---|---|---|
0 | *** | DFS and Recall in Graph | src/second_short_path.cpp |
ID | Hard-Level | Key Point | File |
---|---|---|---|
0 | ** | Fitting by alglib | src/curve_fitting_alglib.cpp |
1 | ** | Fitting by Eigen | src/curve_fitting_eigen.cpp |
2 | *** | Determine crossing | src/curve_crossing.cpp |
3 | *** | Determine crossing 2 | src/fast_curve_crossing.cpp |
ID | Hard-Level | Key Point | File |
---|---|---|---|
0 | ** | Basic Qudratic-Programming | src/qp_demo.cpp |
ID | Hard-Level | Key Point | File |
---|---|---|---|
0 | * | ToLeft Test | src/to_left_test.cpp |
ID | Hard-Level | Key Point | File |
---|---|---|---|
0 | ** | rvalue and lvalue | src/rvalue.cpp |
1 | *** | template specializing and macro | src/hammer_of_god.cpp |