<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>csTechie &#187; Uncategorized</title>
	<atom:link href="http://cstechie.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://cstechie.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sun, 02 May 2010 16:05:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Print Binary Search Tree Level By Level &#8211; Java Source Code</title>
		<link>http://cstechie.com/print-binary-search-tree-level-by-level-java-source-code/</link>
		<comments>http://cstechie.com/print-binary-search-tree-level-by-level-java-source-code/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 14:45:56 +0000</pubDate>
		<dc:creator>syam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://cstechie.com/?p=226</guid>
		<description><![CDATA[Print all nodes level by level



   public static void printlevelByLevel(Node root)
   {
      Node current = root;
      Queue q = new Queue();
      q.add(root);
      while(!q.isEmpty())
      {
   [...]]]></description>
			<content:encoded><![CDATA[<p>Print all nodes level by level<br />
<code>
<pre>

   public static void printlevelByLevel(Node root)
   {
      Node current = root;
      Queue q = new Queue();
      q.add(root);
      while(!q.isEmpty())
      {
        Node c =(Node) q.remove();
        System.out.print(c.val+",");
        if(c.left!=null)q.add(c.left);
        if(c.right!=null)q.add(c.right);
      }
   }
</pre>
<p></code></p>
<p>Print all nodes level by level and priting also when each level finishes</p>
<p><code>
<pre>

      public static void printlevelByLevel2Queues(Node root)
   {
      Node current = root;
      Queue q[] = new Queue[]{new Queue(),new Queue()};
      int currentQ=0;
      q[currentQ].add(root);
      while(!q[currentQ].isEmpty() || !q[1-currentQ].isEmpty() )
      {
        if(q[currentQ].isEmpty())
        {
          System.out.println("One level Finished... Switching queue...");
          currentQ = 1- currentQ;
        }
        Node c =(Node) q[currentQ].remove();
        System.out.print(c.val+",");
        if(c.left!=null)q[1-currentQ].add(c.left);
        if(c.right!=null)q[1-currentQ].add(c.right);
      }
   }
</pre>
<p></code></p>
]]></content:encoded>
			<wfw:commentRss>http://cstechie.com/print-binary-search-tree-level-by-level-java-source-code/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>UML Resources and Tutorials</title>
		<link>http://cstechie.com/uml-resources-and-tutorials/</link>
		<comments>http://cstechie.com/uml-resources-and-tutorials/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 07:38:29 +0000</pubDate>
		<dc:creator>syam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://cstechie.com/?p=192</guid>
		<description><![CDATA[UML Tutorials

ArgoUML User Manual

]]></description>
			<content:encoded><![CDATA[<p>UML Tutorials</p>
<ol>
<li><a href="http://argouml-stats.tigris.org/documentation/manual-0.28/">ArgoUML User Manual</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://cstechie.com/uml-resources-and-tutorials/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>facebook like CSS Styling for a facebook application</title>
		<link>http://cstechie.com/facebook-like-css-styling-for-a-facebook-application/</link>
		<comments>http://cstechie.com/facebook-like-css-styling-for-a-facebook-application/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 15:00:35 +0000</pubDate>
		<dc:creator>syam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://cstechie.com/?p=170</guid>
		<description><![CDATA[Tutorials

How to Style an Application Like Facebook
Facebook Styles

]]></description>
			<content:encoded><![CDATA[<p>Tutorials</p>
<ol>
<li><a href="http://devtacular.com/articles/bkonrad/how-to-style-an-application-like-facebook/">How to Style an Application Like Facebook</a></li>
<li><a href="http://wiki.developers.facebook.com/index.php/Facebook_Styles">Facebook Styles</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://cstechie.com/facebook-like-css-styling-for-a-facebook-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to send message from a facebook application</title>
		<link>http://cstechie.com/how-to-send-message-from-a-facebook-application/</link>
		<comments>http://cstechie.com/how-to-send-message-from-a-facebook-application/#comments</comments>
		<pubDate>Sun, 29 Nov 2009 15:09:25 +0000</pubDate>
		<dc:creator>syam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://cstechie.com/?p=166</guid>
		<description><![CDATA[Just make url in the following format. If this is clicked a popup window will be opened  with message title XXXXX and message text XXXXX
http://www.facebook.com/message.php?id=&#60;USER ID&#62;&#38;subject=XXXXX&#38;msg=XXXXX
]]></description>
			<content:encoded><![CDATA[<p>Just make url in the following format. If this is clicked a popup window will be opened  with message title XXXXX and message text XXXXX</p>
<p>http://www.facebook.com/message.php?id=&lt;USER ID&gt;&amp;subject=XXXXX&amp;msg=XXXXX</p>
]]></content:encoded>
			<wfw:commentRss>http://cstechie.com/how-to-send-message-from-a-facebook-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorials and Resources for Facebook Application Developers</title>
		<link>http://cstechie.com/tutorials-and-resources-for-facebook-application-developers/</link>
		<comments>http://cstechie.com/tutorials-and-resources-for-facebook-application-developers/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 15:44:48 +0000</pubDate>
		<dc:creator>syam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://cstechie.com/?p=153</guid>
		<description><![CDATA[Facebook Applications: Tutorials to get Started

Creating a Platform Application &#8211; This guide shows you how to configure the settings and integration points for a Facebook Platform application and configure your host server.
Getting Started &#8211; Official page
How to Guides

Facebook Documentation

Facebook Markup Language (FBML)
FBJS

Facebook Applications:  Source Code and open Source Projects

Open source projects
Finding Sample Code for [...]]]></description>
			<content:encoded><![CDATA[<p>Facebook Applications: Tutorials to get Started</p>
<ol>
<li><a href="http://wiki.developers.facebook.com/index.php/Creating_a_Platform_Application">Creating a Platform Application &#8211; This guide shows you how to configure the settings and integration points for a Facebook Platform application and configure your host server.</a></li>
<li><a href="http://developers.facebook.com/get_started.php">Getting Started &#8211; Official page</a></li>
<li><a href="http://wiki.developers.facebook.com/index.php/How-to_Guides">How to Guides</a></li>
</ol>
<p>Facebook Documentation</p>
<ol>
<li><a href="http://wiki.developers.facebook.com/index.php/FBML">Facebook Markup Language (FBML)</a></li>
<li><a href="http://wiki.developers.facebook.com/index.php/FBJS">FBJS</a></li>
</ol>
<p>Facebook Applications:  Source Code and open Source Projects</p>
<ol>
<li><a href="http://wiki.developers.facebook.com/index.php/Open_source_projects">Open source projects</a></li>
<li><a href="http://gotads.blogspot.com/2007/07/finding-sample-code-for-facebook-apps.html">Finding Sample Code for Facebook Apps</a></li>
</ol>
<p>Tips and Trics</p>
<ol>
<li><a href="http://wiki.developers.facebook.com/index.php/Choosing_between_an_FBML_or_IFrame_Application">Choosing between an FBML or IFrame Application</a></li>
</ol>
<p>Facebook developer Tools</p>
<ol>
<li><a href="http://developers.facebook.com/tools.php">Tools</a></li>
</ol>
<p>Face Book Examples</p>
<ol>
<li><a href="http://wiki.developers.facebook.com/index.php/FBJS/Examples/Ajax">Ajax Examples</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://cstechie.com/tutorials-and-resources-for-facebook-application-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP MySQL Tutorials</title>
		<link>http://cstechie.com/php-mysql-tutorials/</link>
		<comments>http://cstechie.com/php-mysql-tutorials/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 14:16:12 +0000</pubDate>
		<dc:creator>syam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://cstechie.com/?p=154</guid>
		<description><![CDATA[Basic Tutorials

PHP/MySQL Tutorial

]]></description>
			<content:encoded><![CDATA[<p>Basic Tutorials</p>
<ol>
<li><a href="http://www.freewebmasterhelp.com/tutorials/phpmysql">PHP/MySQL Tutorial</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://cstechie.com/php-mysql-tutorials/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Select Choice and JavaScript Handler</title>
		<link>http://cstechie.com/simple-select-choice-and-javascript-handler/</link>
		<comments>http://cstechie.com/simple-select-choice-and-javascript-handler/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 15:34:32 +0000</pubDate>
		<dc:creator>syam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://cstechie.com/?p=149</guid>
		<description><![CDATA[
&#60;html&#62;
&#60;body&#62;
 &#60;script type=&#34;text/javascript&#34;&#62;
    //&#60;![CDATA[
    function selectClicked() {
	  name = document.getElementById('choice1').value;
      alert('Clicked value='+name);
    }

    //]]&#62;
  &#60;/script&#62;
&#60;form name=form&#62;

      &#60;select id=&#34;choice1&#34; name=&#34;choice1&#34; onchange=&#34;selectClicked();&#34;&#62;
        &#60;option value=&#34;val0&#34; selected&#62;slected&#60;/option&#62;
  [...]]]></description>
			<content:encoded><![CDATA[<pre>
&lt;html&gt;
&lt;body&gt;
 &lt;script type=&quot;text/javascript&quot;&gt;
    //&lt;![CDATA[
    function selectClicked() {
	  name = document.getElementById('choice1').value;
      alert('Clicked value='+name);
    }

    //]]&gt;
  &lt;/script&gt;
&lt;form name=form&gt;

      &lt;select id=&quot;choice1&quot; name=&quot;choice1&quot; onchange=&quot;selectClicked();&quot;&gt;
        &lt;option value=&quot;val0&quot; selected&gt;slected&lt;/option&gt;
        &lt;option value=&quot;val1&quot;&gt;Land&lt;/option&gt;
        &lt;option value=&quot;val2&quot;&gt;Sea&lt;/option&gt;
        &lt;option value=&quot;val3&quot;&gt;Air&lt;/option&gt;
      &lt;/select&gt;
    &lt;/td&gt;&lt;td&gt;

&lt;/form&gt;
&lt;/body&gt;
&lt;html&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://cstechie.com/simple-select-choice-and-javascript-handler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check whether a linked list is a palindrome</title>
		<link>http://cstechie.com/check-whether-a-linked-list-is-a-palindrome/</link>
		<comments>http://cstechie.com/check-whether-a-linked-list-is-a-palindrome/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 16:12:08 +0000</pubDate>
		<dc:creator>syam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://cstechie.com/?p=123</guid>
		<description><![CDATA[Given a linked list, find out whether it is a palindrome or not
]]></description>
			<content:encoded><![CDATA[<p>Given a linked list, find out whether it is a palindrome or not</p>
]]></content:encoded>
			<wfw:commentRss>http://cstechie.com/check-whether-a-linked-list-is-a-palindrome/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>0&#8217;s and 1&#8217;s Only Matrix Interview Questions</title>
		<link>http://cstechie.com/0s-and-1s-only-matrix-interview-questions/</link>
		<comments>http://cstechie.com/0s-and-1s-only-matrix-interview-questions/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 15:02:14 +0000</pubDate>
		<dc:creator>syam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://cstechie.com/?p=121</guid>
		<description><![CDATA[Given an MXN Matrix consisting of only elements 0&#8217;s or 1&#8217;s.
Find
1. Largest square matrix with 1&#8217;s
2. Largest rectagle with 1&#8217;s
3. Largest Square with borders made of 1&#8217;s
4. Largest Rectangle with borders made of 1&#8217;s
]]></description>
			<content:encoded><![CDATA[<p>Given an MXN Matrix consisting of only elements 0&#8217;s or 1&#8217;s.</p>
<p>Find</p>
<p>1. Largest square matrix with 1&#8217;s</p>
<p>2. Largest rectagle with 1&#8217;s</p>
<p>3. Largest Square with borders made of 1&#8217;s</p>
<p>4. Largest Rectangle with borders made of 1&#8217;s</p>
]]></content:encoded>
			<wfw:commentRss>http://cstechie.com/0s-and-1s-only-matrix-interview-questions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find intersection of 2 arrays</title>
		<link>http://cstechie.com/find-intersection-of-2-arrays/</link>
		<comments>http://cstechie.com/find-intersection-of-2-arrays/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 16:05:06 +0000</pubDate>
		<dc:creator>syam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://cstechie.com/?p=109</guid>
		<description><![CDATA[How do you find out intersection between two arrays
Case 1:  One array huge compared to the other array
Case 2: One array sorted
Case 3: Both arrays sorted
Case 4: Unsorted and of equal length
]]></description>
			<content:encoded><![CDATA[<p>How do you find out intersection between two arrays<br />
Case 1:  One array huge compared to the other array<br />
Case 2: One array sorted<br />
Case 3: Both arrays sorted<br />
Case 4: Unsorted and of equal length</p>
]]></content:encoded>
			<wfw:commentRss>http://cstechie.com/find-intersection-of-2-arrays/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
