惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

T
Tailwind CSS Blog
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 【当耐特】
The Cloudflare Blog
博客园 - 聂微东
博客园 - 司徒正美
量子位
博客园 - 三生石上(FineUI控件)
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
G
Google Developers Blog
Apple Machine Learning Research
Apple Machine Learning Research
罗磊的独立博客
酷 壳 – CoolShell
酷 壳 – CoolShell
Y
Y Combinator Blog
S
SegmentFault 最新的问题
T
The Blog of Author Tim Ferriss
P
Proofpoint News Feed
Google DeepMind News
Google DeepMind News
Blog — PlanetScale
Blog — PlanetScale
有赞技术团队
有赞技术团队
A
About on SuperTechFans

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Resolving deletion in AVL trees
RIK · 2026-05-16 · via DEV Community

Started solving for AVL (Adelson-Velsky and Landis, named after its inventors) trees, 3 week back but now i am finally done. For starters like me, got to understand on how efficiently does stack data structure work. Even while dealing with search operations, had to use stack just to keep track on which set of nodes I traversed on. Of course the node traversal starts from the root node.

All this is done for practice sake and clear my understanding regarding data structures and algorithms. That's why I have used C programming, to get to know the nuts and bolts...

The searching operation is after all the most basic of all in a tree, especially search trees, decreases your traversal effort and stops wasting time, dealing with nodes, where you think "that's not where my key is.."

Built a dedicated files, named as helpers.C where i defined all the possible definitions of stack, right from push, pop and stacktop. Even mentioned definition displaying the nodes from top to bottom for debugging sake. It is easier to manage all the members of stack like top, size and an array into a single entity so I also defined a structure.

However make sure to include the necessary header files and the files, defined by you.

As per an example, i used this.

As per the newnode is concerned, a pointer is pointing to memory address allocated in heap memory is done, whose left and right child are pointing to null pointers and an assignment of the key, the data is also done.

Remember, we used stack to store information on which path did we traversed, at the stack top there exists a memory address pointing to a node belonging to the existing tree where an int value of 49 exists. There is another reason behind that, will be covered shortly.

But what does AVL trees involve ? It involves 3 core steps, calculate the node's height, checkout it balance factor, which is the difference in height of its right branch from its left branch and third if the balance factor's value exceeds a certain threshold, rotation of nodes shall be done. Usually the threshold is beyond -1 (that is more negative than -1, say -2, -3 etc) or +1 (more positive than +1, say 2,3 etc).

There are 4 types of rotations involved: LL (left-left), LR (left-right), RL (right-left) and RR (right-right). Let me show you with a diagram.

The first column shows LL rotation and the second column shows LR rotation.

Similarly, the next diagram, the first column is about RR rotation and the second one is the RL rotation.

I guess it looks a bit messy, I shall attach the github repo at the very bottom.

The main issue i faced is regarding segmentation fault. It is like thorn under my feet. Also during rotation I accidentally connected the leaf node back to the parent, so when in-order or pre-order traversal function are triggered, it used to give stack-overflow, after the flow gets stuck in an unwanted circular loop. Had to sketch diagrams all over again and again.

It is a hard rule AVL trees, also a BST (Binary Search Tree) that while all the nodes from left to right while using in-order traversal, they must appear sorted, because upon dealing with deletion, getting in touch with the successor node is very important as that node where the data is shall be replaced by its successor's data. So structurally not removing the node to be deleted rather a form of replacement, and going down the line where the actual successor node is, we can use free().

Let's say we want to delete the root node, which is having a value of 38. We shall go 1 step rightward and in a loop continue moving to the left until there is a dead end. Even here stack shall be used. So that the left and right child pointers of the parent of the successor node, which is holding a value of 46 can be updated. In this case the left child of the parent shall hold the address of the right child of the successor node.

Now we shall move backwards, popping out address of the nodes stored in stack to check for their balance factor, if balance factor > 1 or < -1, then go for rotation. Of course this shall be done in a loop.

Yeah in the end, there is another thing to mention, about height of node. It is not a hard and fast rule, but i considered leaf nodes to have height of 0, so what i did is increment by 1 as i move from root node to the destination node, giving me a depth, using which i subtract from st.top (the highest index value). In other words, the longest route in that traversal.

Observe in line number 265. Notice that there 'I' mentioned the last parameter of checkForRotation(), denoting check of rotation where I am dealing with insertion operation and 'D' for deletion.

PS
github repo: https://github.com/S-a-t-y-aa-y-t-a-S/DSA/blob/main/avl.C