An explanation of the concepts of order and degree for trees.
Also find me here:
Baeldung Author
Said Sryheni
I have a master's degree in software engineering. Currently, I'm working as a full-stack developer with +6 years of experience. I like algorithms and data structures, in addition to solving complex problems by writing clean and reliable code.
Here's what I've written (so far):
Baeldung on Computer Science
- All
- Algorithms (30)
- Math and Logic (11)
- Searching (9)
- Path Finding (9)
- Graphs (8)
- Trees (7)
- Graph Traversal (7)
- Data Structures (7)
- Sorting (6)
- Programming (2)
- Networking (1)
- Core Concepts (1)
Determining the Most Distant Pair of Points
Filed under Math and Logic
A guide to the problem of finding the distance between the farthest pair of points from a given set of points.
Finding the Minimum Number of Jumps to Reach the End of an Array
Filed under Searching
An overview of the problem of finding the minimum number of jumps to reach the end of a given array starting from the beginning.
Algorithm to Find All Subarrays With a Given Sum K
Filed under Algorithms
A quick and practical guide to the problem of finding the number of subarrays with a given sum K.
Finding the Number of Distinct Subsequences of a String
Filed under Searching
Understand the problem of finding distinct subsequences of a string and a few ways to approach it.
How To Find a List of Possible Words From a Letter Matrix
Filed under Searching
A quick and practical overview of the problem of finding the list of all possible words from a 2D letter matrix.
What Is the Best Sorting Algorithm To Sort an Array of Small Integers
Filed under Sorting
A quick and practical guide to sorting arrays of small integers.
How To Determine if a Point Is in a 2D Triangle
Filed under Algorithms
Learn three approaches to detect if a point lies inside a 2D triangle
Circle Line-Segment Collision Detection Algorithm
Filed under Algorithms, Math and Logic
A guide to detecting collisions between a circle and a line or line segment.