<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Computer Science Stuff</title>
	<atom:link href="http://compscistuff.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://compscistuff.com</link>
	<description>Dedicated to satisfying your computer needs</description>
	<lastBuildDate>Mon, 17 Oct 2011 18:43:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on Understanding what is 32 bit and 64-bit? by SEO</title>
		<link>http://compscistuff.com/2009/06/understanding-what-is-32-bit-and-64-bit/comment-page-1/#comment-718</link>
		<dc:creator>SEO</dc:creator>
		<pubDate>Mon, 17 Oct 2011 18:43:29 +0000</pubDate>
		<guid isPermaLink="false">http://compscistuff.com/?p=468#comment-718</guid>
		<description>&lt;strong&gt;[...]very few websites that happen to be detailed below, from our point of view are undoubtedly well worth checking out[...]…...&lt;/strong&gt;

[...]Here is a Great Blog You Might Find Interesting that we Encourage You[...]…...</description>
		<content:encoded><![CDATA[<p><strong>[...]very few websites that happen to be detailed below, from our point of view are undoubtedly well worth checking out[...]…&#8230;</strong></p>
<p>[...]Here is a Great Blog You Might Find Interesting that we Encourage You[...]…&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Infix to Postfix Expressions by fen</title>
		<link>http://compscistuff.com/2008/09/infix-to-postfix-expressions/comment-page-1/#comment-711</link>
		<dc:creator>fen</dc:creator>
		<pubDate>Mon, 12 Sep 2011 09:02:37 +0000</pubDate>
		<guid isPermaLink="false">http://compscistuff.com/?p=21#comment-711</guid>
		<description>hello !:) what if i use letter rather than numbers in inputting the expression? your code is very useful :) thanks ..</description>
		<content:encoded><![CDATA[<p>hello !:) what if i use letter rather than numbers in inputting the expression? your code is very useful <img src='http://compscistuff.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  thanks ..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Text to Speech for the Google OS, Android (Updated) by nomie madrid</title>
		<link>http://compscistuff.com/2009/04/text-to-speech-for-googles-os-android/comment-page-1/#comment-702</link>
		<dc:creator>nomie madrid</dc:creator>
		<pubDate>Wed, 27 Jul 2011 08:00:13 +0000</pubDate>
		<guid isPermaLink="false">http://compscistuff.com/?p=418#comment-702</guid>
		<description>hi i just want to know what&#039;s the source code of browsing inbox message using syllable algorithm in android..thanks in advance</description>
		<content:encoded><![CDATA[<p>hi i just want to know what&#8217;s the source code of browsing inbox message using syllable algorithm in android..thanks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Infix to Postfix Expressions by chiffey</title>
		<link>http://compscistuff.com/2008/09/infix-to-postfix-expressions/comment-page-1/#comment-701</link>
		<dc:creator>chiffey</dc:creator>
		<pubDate>Tue, 12 Jul 2011 18:50:51 +0000</pubDate>
		<guid isPermaLink="false">http://compscistuff.com/?p=21#comment-701</guid>
		<description>#include 
#include 
#include 

class IntoPost{
	private:

      char post[100];
      char stackArr[100];
      int top;
      int num;

   public:

   	char infix[100];

      stack(){
      	num=0;
      	top= -1;
      }

      void push(char op){
      	stackArr[++top]=op;
      }

      char pop(){
      	return(stackArr[top--]);
      }

      bool isEmpty(){
      	return(top==-1);
      }

      void gotPost(char op){
      	post[num++]=op;
      }

      void gotOper(char op, int pre1){

      	while(!isEmpty()){
         	int pre2;
            char opTop=pop();

         	if(opTop==&#039;+&#039;&#124;&#124;opTop==&#039;-&#039;){
            	pre2=1;
            }
            else{
            	pre2=2;
            }

            if(pre2&lt;pre1){
            	push(opTop);
            }
            else{
            	gotPost(opTop);
            }
         }
         push(op);
      }

      void showPost(){
      	while(!isEmpty()){
         	post[num++]=pop();
         }

      	cout&lt;&lt;post;
      }
};
int main(){
	IntoPost Ip;

   cout&lt;&lt;&quot;Enter infix expression: &quot;;
	cin.getline(Ip.infix, 100);

   for(int i=0;i&lt;strlen(Ip.infix); i++){
   	char sign=Ip.infix[i];

      switch(sign){
      	case&#039;+&#039;:
         case&#039;-&#039;:
         	Ip.gotOper(sign, 1);
            break;
         case&#039;*&#039;:
         case&#039;/&#039;:
         	Ip.gotOper(sign, 2);
            break;
         default:
         	Ip.gotPost(sign);
            break;
         }
   }


   Ip.showPost();

   cin.get();
   cin.get();

   return 0;
}</description>
		<content:encoded><![CDATA[<p>#include<br />
#include<br />
#include </p>
<p>class IntoPost{<br />
	private:</p>
<p>      char post[100];<br />
      char stackArr[100];<br />
      int top;<br />
      int num;</p>
<p>   public:</p>
<p>   	char infix[100];</p>
<p>      stack(){<br />
      	num=0;<br />
      	top= -1;<br />
      }</p>
<p>      void push(char op){<br />
      	stackArr[++top]=op;<br />
      }</p>
<p>      char pop(){<br />
      	return(stackArr[top--]);<br />
      }</p>
<p>      bool isEmpty(){<br />
      	return(top==-1);<br />
      }</p>
<p>      void gotPost(char op){<br />
      	post[num++]=op;<br />
      }</p>
<p>      void gotOper(char op, int pre1){</p>
<p>      	while(!isEmpty()){<br />
         	int pre2;<br />
            char opTop=pop();</p>
<p>         	if(opTop==&#8217;+'||opTop==&#8217;-'){<br />
            	pre2=1;<br />
            }<br />
            else{<br />
            	pre2=2;<br />
            }</p>
<p>            if(pre2&lt;pre1){<br />
            	push(opTop);<br />
            }<br />
            else{<br />
            	gotPost(opTop);<br />
            }<br />
         }<br />
         push(op);<br />
      }</p>
<p>      void showPost(){<br />
      	while(!isEmpty()){<br />
         	post[num++]=pop();<br />
         }</p>
<p>      	cout&lt;&lt;post;<br />
      }<br />
};<br />
int main(){<br />
	IntoPost Ip;</p>
<p>   cout&lt;&lt;&quot;Enter infix expression: &quot;;<br />
	cin.getline(Ip.infix, 100);</p>
<p>   for(int i=0;i&lt;strlen(Ip.infix); i++){<br />
   	char sign=Ip.infix[i];</p>
<p>      switch(sign){<br />
      	case&#039;+&#039;:<br />
         case&#039;-&#039;:<br />
         	Ip.gotOper(sign, 1);<br />
            break;<br />
         case&#039;*&#039;:<br />
         case&#039;/&#039;:<br />
         	Ip.gotOper(sign, 2);<br />
            break;<br />
         default:<br />
         	Ip.gotPost(sign);<br />
            break;<br />
         }<br />
   }</p>
<p>   Ip.showPost();</p>
<p>   cin.get();<br />
   cin.get();</p>
<p>   return 0;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Is Alexa traffic rankings reliable? by Enter your name...</title>
		<link>http://compscistuff.com/2008/10/is-alexa-traffic-rankings-reliable/comment-page-1/#comment-700</link>
		<dc:creator>Enter your name...</dc:creator>
		<pubDate>Sat, 04 Jun 2011 08:26:29 +0000</pubDate>
		<guid isPermaLink="false">http://compscistuff.com/?p=148#comment-700</guid>
		<description>I like this article.I agree the idea!</description>
		<content:encoded><![CDATA[<p>I like this article.I agree the idea!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Macbook Pro Review by Enter your name...</title>
		<link>http://compscistuff.com/2009/08/macbook-pro-review/comment-page-1/#comment-699</link>
		<dc:creator>Enter your name...</dc:creator>
		<pubDate>Sat, 04 Jun 2011 08:25:50 +0000</pubDate>
		<guid isPermaLink="false">http://compscistuff.com/?p=501#comment-699</guid>
		<description>Thank you for your share. It&#039;s worth to read.</description>
		<content:encoded><![CDATA[<p>Thank you for your share. It&#8217;s worth to read.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to get a virus, spyware, adware and all ware off your computer by Enter your name...</title>
		<link>http://compscistuff.com/2009/09/how-to-get-a-virus-spyware-adware-and-all-ware-off-your-computer/comment-page-1/#comment-698</link>
		<dc:creator>Enter your name...</dc:creator>
		<pubDate>Sat, 04 Jun 2011 08:25:30 +0000</pubDate>
		<guid isPermaLink="false">http://compscistuff.com/?p=524#comment-698</guid>
		<description>I like this article.I agree the idea!</description>
		<content:encoded><![CDATA[<p>I like this article.I agree the idea!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Is Mac OS X as secure as you think? by Enter your name...</title>
		<link>http://compscistuff.com/2009/09/is-mac-os-x-as-secure-as-you-think/comment-page-1/#comment-697</link>
		<dc:creator>Enter your name...</dc:creator>
		<pubDate>Sat, 04 Jun 2011 08:25:10 +0000</pubDate>
		<guid isPermaLink="false">http://compscistuff.com/?p=534#comment-697</guid>
		<description>Thank you for your share. It&#039;s worth to read.</description>
		<content:encoded><![CDATA[<p>Thank you for your share. It&#8217;s worth to read.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Iphone vs The Android by Enter your name...</title>
		<link>http://compscistuff.com/2009/10/the-iphone-vs-the-android/comment-page-1/#comment-696</link>
		<dc:creator>Enter your name...</dc:creator>
		<pubDate>Sat, 04 Jun 2011 08:24:41 +0000</pubDate>
		<guid isPermaLink="false">http://compscistuff.com/?p=544#comment-696</guid>
		<description>I like this article.I agree the idea!</description>
		<content:encoded><![CDATA[<p>I like this article.I agree the idea!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Iphone vs The Android part 2 by Enter your name...</title>
		<link>http://compscistuff.com/2009/11/the-iphone-vs-the-android-part-2/comment-page-1/#comment-695</link>
		<dc:creator>Enter your name...</dc:creator>
		<pubDate>Sat, 04 Jun 2011 08:24:25 +0000</pubDate>
		<guid isPermaLink="false">http://compscistuff.com/?p=549#comment-695</guid>
		<description>Thank you for your share. It&#039;s worth to read.</description>
		<content:encoded><![CDATA[<p>Thank you for your share. It&#8217;s worth to read.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

