Skip to content

jatin69/mca201-DS-project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mca201-DS-project

Data Structure Project. B Plus Tree (In-memory)

B+ Tree

  • Insertion
  • Deletion
  • Traversal
  • Search

References

Tools

  • CodeBlocks 16.01
  • Default MingW compiler of codeblocks with option : -std=c++11
  • Goto Setting > Compiler > Global Compiler Settings > Compiler Settings > Other compiler options, and then paste -std=c++11 in the text box. Test by running the following code. It should run fine.
    #include <iostream>
    using namespace std;
    int main() {
        cout << "Hello world!" << endl;
        int* n = nullptr;
        cout << "Bye world!" << endl;
        return 0;
    }
  • Code Style : Google
  • Goto Setting > Editor > source formatter and choose Google
  • On code editor screen, Right click and format use AStyle to format.
  • Codeblocks is not auto-wrapping after 80 chars. So using VS code default formatting.
  • If you want to switch to dark color theme follow this video

Future scope

  • Implement on-disk B-Plus Tree

About

Data Structure Project - B Plus Tree

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages