<?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>
	C# &#8211; Stack Sınıfı yazısına yapılan yorumlar	</title>
	<atom:link href="https://www.srdrylmz.com/c-stack-sinifi/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.srdrylmz.com/c-stack-sinifi/</link>
	<description></description>
	<lastBuildDate>Sun, 26 May 2024 14:02:29 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.2</generator>
	<item>
		<title>
		Yazar: Doğan		</title>
		<link>https://www.srdrylmz.com/c-stack-sinifi/#comment-3204</link>

		<dc:creator><![CDATA[Doğan]]></dc:creator>
		<pubDate>Sun, 26 May 2024 14:02:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.srdrylmz.com/?p=2743#comment-3204</guid>

					<description><![CDATA[Hocam yarın finalim var. İşin tuhafı benim de erzurumda doğup Sakarya Üniversitesinde Bilgisayar Mühendisliiği okumam. Elinize sağlık güzel bir bilgilendirici yazı olmuş]]></description>
			<content:encoded><![CDATA[<p>Hocam yarın finalim var. İşin tuhafı benim de erzurumda doğup Sakarya Üniversitesinde Bilgisayar Mühendisliiği okumam. Elinize sağlık güzel bir bilgilendirici yazı olmuş</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Yazar: hasan		</title>
		<link>https://www.srdrylmz.com/c-stack-sinifi/#comment-2452</link>

		<dc:creator><![CDATA[hasan]]></dc:creator>
		<pubDate>Tue, 21 Dec 2021 14:37:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.srdrylmz.com/?p=2743#comment-2452</guid>

					<description><![CDATA[anlatım için teşekkürler. bu arada siteye koyu tema ekleseniz süper olacak :D]]></description>
			<content:encoded><![CDATA[<p>anlatım için teşekkürler. bu arada siteye koyu tema ekleseniz süper olacak 😀</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Yazar: Rodin		</title>
		<link>https://www.srdrylmz.com/c-stack-sinifi/#comment-1972</link>

		<dc:creator><![CDATA[Rodin]]></dc:creator>
		<pubDate>Fri, 19 Mar 2021 13:54:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.srdrylmz.com/?p=2743#comment-1972</guid>

					<description><![CDATA[Merhaba,
Çok sadece bir anlatımınız var. Tebrikler. Parantez sorusuna benim de naçizane 2 tane çözümüm var. Belki okuyan birilerinin işine yarar :)
private static bool paranthesesMatch(string expression)
        {
            Stack paranthases = new();
            foreach (char item in expression)
            {
                if (item == &#039;(&#039;)
                {
                    paranthases.Push(item);
                }
                else if (item == &#039;)&#039;)
                {
                    if (!paranthases.TryPop(out _))
                    {
                         return false;
                    }
                }
            }

            return paranthases.Count == 0;
        }
        private static bool paranthesesMatch2(string expression)
        {
            Dictionary charStore = new();
            foreach (char item in expression)
            {
               charStore[item] = charStore.TryGetValue(item,out int value) ? value + 1 : 1;
            }
            return charStore[&#039;(&#039;]   == charStore[&#039;)&#039;];
        }]]></description>
			<content:encoded><![CDATA[<p>Merhaba,<br />
Çok sadece bir anlatımınız var. Tebrikler. Parantez sorusuna benim de naçizane 2 tane çözümüm var. Belki okuyan birilerinin işine yarar 🙂<br />
private static bool paranthesesMatch(string expression)<br />
        {<br />
            Stack paranthases = new();<br />
            foreach (char item in expression)<br />
            {<br />
                if (item == &#8216;(&#8216;)<br />
                {<br />
                    paranthases.Push(item);<br />
                }<br />
                else if (item == &#8216;)&#8217;)<br />
                {<br />
                    if (!paranthases.TryPop(out _))<br />
                    {<br />
                         return false;<br />
                    }<br />
                }<br />
            }</p>
<p>            return paranthases.Count == 0;<br />
        }<br />
        private static bool paranthesesMatch2(string expression)<br />
        {<br />
            Dictionary charStore = new();<br />
            foreach (char item in expression)<br />
            {<br />
               charStore[item] = charStore.TryGetValue(item,out int value) ? value + 1 : 1;<br />
            }<br />
            return charStore[&#8216;(&#8216;]   == charStore[&#8216;)&#8217;];<br />
        }</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Yazar: Erhan		</title>
		<link>https://www.srdrylmz.com/c-stack-sinifi/#comment-1916</link>

		<dc:creator><![CDATA[Erhan]]></dc:creator>
		<pubDate>Sun, 14 Feb 2021 08:16:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.srdrylmz.com/?p=2743#comment-1916</guid>

					<description><![CDATA[Hocam teşekkürler, güzel anlatmışsınız]]></description>
			<content:encoded><![CDATA[<p>Hocam teşekkürler, güzel anlatmışsınız</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Yazar: ilyas		</title>
		<link>https://www.srdrylmz.com/c-stack-sinifi/#comment-1747</link>

		<dc:creator><![CDATA[ilyas]]></dc:creator>
		<pubDate>Sat, 19 Dec 2020 23:29:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.srdrylmz.com/?p=2743#comment-1747</guid>

					<description><![CDATA[hocam bu örnekler için çok teşekkürler .
okul dersten pek bir şey anlamamıştım sizin sayenizde bir şeyler öğrendim .
iyi günler .]]></description>
			<content:encoded><![CDATA[<p>hocam bu örnekler için çok teşekkürler .<br />
okul dersten pek bir şey anlamamıştım sizin sayenizde bir şeyler öğrendim .<br />
iyi günler .</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Yazar: C# &#8211; Numaralandırıcı &#124; Serdar Yılmaz		</title>
		<link>https://www.srdrylmz.com/c-stack-sinifi/#comment-133</link>

		<dc:creator><![CDATA[C# &#8211; Numaralandırıcı &#124; Serdar Yılmaz]]></dc:creator>
		<pubDate>Sat, 22 Apr 2017 11:57:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.srdrylmz.com/?p=2743#comment-133</guid>

					<description><![CDATA[[&#8230;] Stack gibi tekil öğeleri tutan koleksiyon sınıflarında Numaralandırıcı, IEnumerator arayüzünü [&#8230;]]]></description>
			<content:encoded><![CDATA[<p>[&#8230;] Stack gibi tekil öğeleri tutan koleksiyon sınıflarında Numaralandırıcı, IEnumerator arayüzünü [&#8230;]</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Yazar: C# &#8211; Koleksiyonlar &#124; Serdar Yılmaz		</title>
		<link>https://www.srdrylmz.com/c-stack-sinifi/#comment-132</link>

		<dc:creator><![CDATA[C# &#8211; Koleksiyonlar &#124; Serdar Yılmaz]]></dc:creator>
		<pubDate>Tue, 04 Apr 2017 16:33:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.srdrylmz.com/?p=2743#comment-132</guid>

					<description><![CDATA[[&#8230;] • Stack [&#8230;]]]></description>
			<content:encoded><![CDATA[<p>[&#8230;] • Stack [&#8230;]</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
