Hi! I think this question is more about style: I have an algorithm that has a very high CC (and a lot of lines!). I want to reduce it, and it's easy since there are pieces of code that can be grouped. The problem is that doing things this way I would have a "big" function calling "small" functions which are only called once.
In my opinion breaking a big function in small pieces is better for the legibility of the code (in this case) despite functions are called once.
What do you thik? How do yo do in similar cases?