在研發(fā)之余,將做工程過程中比較重要的一些內(nèi)容備份一下,如下的內(nèi)容內(nèi)容是關(guān)于C# 自定義堆棧進(jìn)行回文檢測的內(nèi)容,希望對(duì)各朋友也有用。
創(chuàng)新互聯(lián)是一家專業(yè)提供新晃企業(yè)網(wǎng)站建設(shè),專注與成都網(wǎng)站建設(shè)、網(wǎng)站建設(shè)、HTML5、小程序制作等業(yè)務(wù)。10年已為新晃眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)絡(luò)公司優(yōu)惠進(jìn)行中。using System;
using System.Collections;
namespace CStack
{
class Program
{
static void Main(string[] args)
{
CStack alist = new CStack();
string ch;
string word = "上海自來水來自海上";
bool isPalindrome = true;
for (int x = 0; x < word.Length; x++)
{
alist.Push(word.Substring(x,1));
}
int pos = 0;
while (alist.Count > 0)
{
ch = alist.Pop().ToString();
if (ch !=word.Substring(pos,1))
{
isPalindrome = false;
break;
}
pos++;
}
Console.WriteLine(isPalindrome);
}
}
public class CStack
{
private int p_index;
private ArrayList list;
public CStack()
{
list = new ArrayList();
p_index = -1;
}
public int Count
{
get { return list.Count; }
}
public void Push(object item)
{
list.Add(item);
p_index++;
}
public object Pop()
{
if (0 > p_index)
{
return null;
}
object obj = list[p_index];
list.RemoveAt(p_index);
p_index--;
return obj;
}
public void Clear()
{
list.Clear();
p_index = -1;
}
public object Peek()
{
if (p_index < 0)
{
return null;
}
return list[p_index];
}
}
}
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。