vote up 0 vote down star

Hi.

I have been working on this infix to postfix/polis notation converter. Although, I do not feel the solution is adequate. Specifically the j (EDIT: Now called index) variable is bugging me.

Do you guys have any suggestions? Or perhaps there is a much better way to accomplish it? Or do I just worry too much?

public static string[] InfixToPostfix(string[] infixArray)
{
    var stack = new Stack<string>();
    var postfix = new string[infixArray.Length];

    int index = 0;
    string st;
    for (int i = 0; i < infixArray.Length; i++)
    {
        if (!(MyMath.MathOperators.Contains(infixArray[i])))
        {
            postfix[index] = infixArray[i];
            index++;
        }
        else
        {
            if (infixArray[i].Equals("("))
            {
                stack.Push("(");
            }
            else if (infixArray[i].Equals(")"))
            {
                st = stack.Pop();
                while (!(st.Equals("(")))
                {
                    postfix[index] = st;
                    index++;
                    st = stack.Pop();
                }
            }
            else
            {
                while (stack.Count > 0)
                {
                    st = stack.Pop();
                    if (RegnePrioritet(st) >= RegnePrioritet(infixArray[i]))
                    {
                        postfix[index] = st;
                        index++;
                    }
                    else
                    {
                        stack.Push(st);
                        break;
                    }
                }
                stack.Push(infixArray[i]);
            }
        }
    }
    while (stack.Count > 0)
    {
        postfix[index] = stack.Pop();
        index++;
    }

    return postfix.TakeWhile(item => item != null).ToArray();
}
flag

2  
No time to delve into this now, but you want to be implementing the [shunting yard algorithm](en.wikipedia.org/wiki/Shunting_yard_algorithm/…) for this. Could be exactly what you have, but just thought I'd add that anyway. – Noldorin Sep 17 at 11:00

2 Answers

vote up 1 vote down check

If you replace 'array' by a Stack, you don't have to keep track where you are with the 'index' variable.

You can then return your result with postfixStack.ToArray()

My implementation:

public static string[] InfixToPostfix( string[] infixArray )
{
	var stack = new Stack<string>();
	var postfix = new Stack<string>();

	string st;
	for ( int i = 0 ; i < infixArray.Length ; i++ )
	{
		if ( !( "()*/+-".Contains( infixArray[ i ] ) ) )
		{
			postfix.Push(infixArray[i]);
		}
		else
		{
			if ( infixArray[ i ].Equals( "(" ) )
			{
				stack.Push( "(" );
			}
			else if ( infixArray[ i ].Equals( ")" ) )
			{
				st = stack.Pop();
				while ( !( st.Equals( "(" ) ) )
				{
					postfix.Push( st );
					st = stack.Pop();
				}
			}
			else
			{
				while ( stack.Count > 0 )
				{
					st = stack.Pop();
					if ( RegnePrioritet( st ) >= RegnePrioritet( infixArray[ i ] ) )
					{
						postfix.Push(st);
					}
					else
					{
						stack.Push( st );
						break;
					}
				}
				stack.Push( infixArray[ i ] );
			}
		}
	}
	while ( stack.Count > 0 )
	{
		postfix.Push(stack.Pop());
	}

	return postfix.Reverse().ToArray();
}
link|flag
Hmmm, won't that stack have things in the wrong order? – CasperT Sep 17 at 11:12
I'm not sure, I haven't delved that deep in your algorithm. But if so, you could call 'Reverse' on it, before you call ToArray. – Eric Minkes Sep 17 at 12:53
Could you show me your implementation? I'm upvote you and accept your answer :) – CasperT Sep 17 at 13:37
I will upvote you* – CasperT Sep 17 at 13:38
Sorry, I was wrong about the Reverse, you do need that. I added my implementation to the answer. – Eric Minkes Sep 18 at 15:17
vote up 0 vote down

RegnePrioritet? what does that mean?

link|flag
Sorry, It means priority :) – CasperT Sep 23 at 11:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.