- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Static Finger Theorem in Data Structure
STATIC FINGER THEOREM − Let f is treated as a specific element called the finger.
Then the below expression is a bound on the cost of splaying a sequence
O(m + n log(n) + Σ Sum log (|f - i[j]| + 1))j
NOTE − |f-i| is denoted as the distance in the symmetric ordering of the items between the finger and item i.
Where m is denoted as number of update or access operations on a tree having at most n nodes.
Observe that, at least in amortized sense, the time taken for first m operations on a tree that never exceeds more than n nodes is the similar as the time taken for balanced binary search trees like AVL trees, 2-3 trees, etc.
- Related Articles
- Finger Searching in Data Structure
- Dynamic Finger Search Trees in Data Structure
- Randomized Finger Search Trees in Data Structure
- Rectangle Data in Data Structure
- Static Data Members in C++
- Quadtrees in Data Structure
- Deaps in Data Structure
- Static Data Member Initialization in C++
- Arrays Data Structure in Javascript
- Stack Data Structure in Javascript
- Queue Data Structure in Javascript
- Set Data Structure in Javascript
- Dictionary Data Structure in Javascript
- Tree Data Structure in Javascript
- Graph Data Structure in Javascript

Advertisements