Sushant Negi
CARBANOID
I am a BTech CSE Student , currently in my 7th semester
Languages
Repos
7
Stars
3
Forks
0
Top Language
TypeScript
Loading contributions...
Top Repositories
DigiBrain is a second brain web platform that stores links (tweets, YouTube videos, documents, etc.) enriched with metadata such as title, description, and tags. The system integrates an AI assistant that retrieves contextually relevant content using embeddings and a vector database.
MFTrecover is a file recovery tool for the Windows NTFS 3.1 file system, used since Windows XP through the latest Windows 11. The tool works by parsing Master File Table (MFT) entries and directly accessing the raw volume to retrieve the data of deleted files.
SketchTogether is a Live Canvas and Chat application . The Canvas has Zooming and Panning Features and has various tools like in excalidraw .
C-PlagAST is a code plagiarism detection tool for C programs using the AST-CC algorithm. It normalizes and compares abstract syntax trees to detect structural similarity, even with reordered or renamed code. Ideal for academic use in detecting hidden code duplication.
Repositories
7No description provided.
DigiBrain is a second brain web platform that stores links (tweets, YouTube videos, documents, etc.) enriched with metadata such as title, description, and tags. The system integrates an AI assistant that retrieves contextually relevant content using embeddings and a vector database.
No description provided.
SketchTogether is a Live Canvas and Chat application . The Canvas has Zooming and Panning Features and has various tools like in excalidraw .
MFTrecover is a file recovery tool for the Windows NTFS 3.1 file system, used since Windows XP through the latest Windows 11. The tool works by parsing Master File Table (MFT) entries and directly accessing the raw volume to retrieve the data of deleted files.
C-PlagAST is a code plagiarism detection tool for C programs using the AST-CC algorithm. It normalizes and compares abstract syntax trees to detect structural similarity, even with reordered or renamed code. Ideal for academic use in detecting hidden code duplication.
This project implements a self-balancing Binary Search Tree (BST) known as an AVL Tree in C++. The AVL Tree maintains the height-balance property by performing automatic rotations during insertion and deletion, ensuring O(log n) time complexity for search, insert, and delete operations.