91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C# 自定義堆棧進行回文檢測的代碼

發布時間:2020-07-22 21:49:16 來源:網絡 閱讀:214 作者:Cool_Manone 欄目:編程語言

在研發之余,將做工程過程中比較重要的一些內容備份一下,如下的內容內容是關于C# 自定義堆棧進行回文檢測的內容,希望對各朋友也有用。

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];  
    }  
}  

}

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

横山县| 德庆县| 敦化市| 南平市| 梁山县| 灌南县| 肃南| 和龙市| 龙泉市| 古田县| 侯马市| 曲松县| 三明市| 玉溪市| 溧水县| 眉山市| 道真| 溆浦县| 汶上县| 山西省| 淮滨县| 日喀则市| 庄浪县| 铜川市| 双城市| 石景山区| 秦皇岛市| 西藏| 阿坝县| 漯河市| 沧州市| 嘉峪关市| 万全县| 黄陵县| 湖南省| 延吉市| 拜城县| 奉化市| 高台县| 临安市| 惠来县|