Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I have this code in my program, and there are multiple variations of it. Just looking at it, I feel like there must be a way to make it more efficient, but I can't think of anything. Just looking at it, does anyone have any ideas?

Essentially, what the code does is it determines which level of the text that it is currently parsing. If it it is in level 0, it adds that body of text to the aMainSection arraylist.

If it it in level 1, it adds that body of text to aChildSection of aMainSection (An arraylist within the aMainSection arraylist). Then it sets the aMainSection text to 'parent text' within a new arraylist.

etc.

Notes:

aMainSection & aChildSection are arrayLists of type Section (A custom class)

levelCount is just an array of type int, size 10 (abstract number)


Code

// Adds the passed in heading text to the appropriate section
    public static void addSectionText(String text)
    {   
        if (currentLevel == 0)
        {
            aMainSection.get(levelCount[0] - 1)
            .addSection(text);
        }
        else if (currentLevel == 1)
        {
            aMainSection.get(levelCount[0] - 1)
            .aChildSection.get(levelCount[1] - 1)
            .addSection(text);

            aMainSection.get(levelCount[0] - 1)
            .aChildSection.get(levelCount[1] - 1)
            .addParentSection(
                    aMainSection.get(levelCount[0] - 1)
                    .getSection());
        }
        else if (currentLevel == 2)
        {
            aMainSection.get(levelCount[0] - 1)

            .aChildSection.get(levelCount[1] - 1)
            .aChildSection.get(levelCount[2] - 1)
            .addSection(text);

            aMainSection.get(levelCount[0] - 1)
            .aChildSection.get(levelCount[1] - 1)
            .aChildSection.get(levelCount[2] - 1)
            .addParentSection(
                    aMainSection.get(levelCount[0] - 1)
                    .getSection());

            aMainSection.get(levelCount[0] - 1)
            .aChildSection.get(levelCount[1] - 1)
            .aChildSection.get(levelCount[2] - 1)
            .addParentSection(
                    aMainSection.get(levelCount[0] - 1)
                    .aChildSection.get(levelCount[1] - 1)
                    .getSection());
        }   
        else if (currentLevel == 3)
        {
            aMainSection.get(levelCount[0] - 1)
            .aChildSection.get(levelCount[1] - 1)
            .aChildSection.get(levelCount[2] - 1)
            .aChildSection.get(levelCount[3] - 1)
            .addSection(text);

            aMainSection.get(levelCount[0] - 1)
            .aChildSection.get(levelCount[1] - 1)
            .aChildSection.get(levelCount[2] - 1)
            .aChildSection.get(levelCount[3] - 1)
            .addParentSection(
                    aMainSection.get(levelCount[0] - 1)
                    .getSection());

            aMainSection.get(levelCount[0] - 1)
            .aChildSection.get(levelCount[1] - 1)
            .aChildSection.get(levelCount[2] - 1)
            .aChildSection.get(levelCount[3] - 1)
            .addParentSection(
                    aMainSection.get(levelCount[0] - 1)
                    .aChildSection.get(levelCount[1] - 1)
                    .getSection());

            aMainSection.get(levelCount[0] - 1)
            .aChildSection.get(levelCount[1] - 1)
            .aChildSection.get(levelCount[2] - 1)
            .aChildSection.get(levelCount[3] - 1)
            .addParentSection(
                    aMainSection.get(levelCount[0] - 1)
                    .aChildSection.get(levelCount[1] - 1)
                    .aChildSection.get(levelCount[2] - 1)
                    .getSection());
        }       
        else if (currentLevel >= 4)
        {
            aMainSection.get(levelCount[0] - 1)
            .aChildSection.get(levelCount[1] - 1)
            .aChildSection.get(levelCount[2] - 1)
            .aChildSection.get(levelCount[3] - 1)
            .aChildSection.get(levelCount[4] - 1)
            .addSection(text);

            aMainSection.get(levelCount[0] - 1)
            .aChildSection.get(levelCount[1] - 1)
            .aChildSection.get(levelCount[2] - 1)
            .aChildSection.get(levelCount[3] - 1)
            .aChildSection.get(levelCount[4] - 1)
            .addParentSection(
                    aMainSection.get(levelCount[0] - 1)
                    .getSection());

            aMainSection.get(levelCount[0] - 1)
            .aChildSection.get(levelCount[1] - 1)
            .aChildSection.get(levelCount[2] - 1)
            .aChildSection.get(levelCount[3] - 1)
            .aChildSection.get(levelCount[4] - 1)
            .addParentSection(
                    aMainSection.get(levelCount[0] - 1)
                    .aChildSection.get(levelCount[1] - 1)
                    .getSection());

            aMainSection.get(levelCount[0] - 1)
            .aChildSection.get(levelCount[1] - 1)
            .aChildSection.get(levelCount[2] - 1)
            .aChildSection.get(levelCount[3] - 1)
            .aChildSection.get(levelCount[4] - 1)
            .addParentSection(
                    aMainSection.get(levelCount[0] - 1)
                    .aChildSection.get(levelCount[1] - 1)
                    .aChildSection.get(levelCount[2] - 1)
                    .getSection());

            aMainSection.get(levelCount[0] - 1)
            .aChildSection.get(levelCount[1] - 1)
            .aChildSection.get(levelCount[2] - 1)
            .aChildSection.get(levelCount[3] - 1)
            .aChildSection.get(levelCount[4] - 1)
            .addParentSection(
                    aMainSection.get(levelCount[0] - 1)
                    .aChildSection.get(levelCount[1] - 1)
                    .aChildSection.get(levelCount[2] - 1)
                    .aChildSection.get(levelCount[3] - 1)
                    .getSection());
        }
    }

Any help or thoughts would be appreciated. Thank you :).

share|improve this question
8  
belongs on codereview.stackexchange.com – Wooble Jul 21 '11 at 16:49
8  
I would make it 10 times less efficient if it meant I could understand what on earth that code does by looking at it. – Mark Peters Jul 21 '11 at 16:49
I agree 100% with Mark on this. – Eric-Karl Jul 21 '11 at 16:51
2  
@This: I'm saying worry about making it easy to understand before making it efficient. This code appears to have a lot of duplication and it's not apparent what it does by looking at the code itself. Often making it more self-documenting by splitting it into well-named methods will lead to more efficient code (or at least easier to optimize code) since you can make optimization decisions in one place and in an encapsulated manner. – Mark Peters Jul 21 '11 at 16:56
1  
The problem is that the code gives almost no clues as to what it is trying to achieve. If the only way you can provide those clues is to comment the code, then that's what you need to do. Put yourself in the mindset of some who has been given ONLY that code. The classes may be "well-defined" but we can't see those definitions. – Stephen C Jul 21 '11 at 17:02
show 3 more comments

closed as off topic by Wooble, Matt, Tomasz Nurkiewicz, Mark Peters, bomslang Jul 21 '11 at 16:52

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.