Comprobar Si Una Cadena Es Un Palíndromo En C#

En este programa de C#, el objetivo es escribir una función iterativa que compruebe si una cadena dada es un palíndromo (simétrica). Un palíndromo es una palabra, frase o secuencia que se lee igual al revés que al derecho. Por ejemplo, la palabra "RADAR" es un palíndromo porque permanece igual al invertirse. El programa comprobará si una cadena cumple esta condición y devolverá un resultado booleano.



Grupo

Funciones en C#

Objectivo

1. Implemente una función iterativa para comprobar si una cadena es simétrica (un palíndromo).
2. Utilice dos punteros, uno al principio de la cadena y otro al final.
3. Compare los caracteres en los dos punteros y muévase hacia el centro.
4. Si algún par de caracteres no coincide, devuelva falso.
5. Si se comprueba toda la cadena y los caracteres coinciden, devuelva verdadero.

Escriba una función iterativa en C# para determinar si una cadena es simétrica (un palíndromo). Por ejemplo, "RADAR" es un palíndromo.

Ejemplo de ejercicio en C#

 Copiar código C#
using System;

class Program
{
    // Function to check if a string is a palindrome iteratively
    static bool IsPalindrome(string str)
    {
        int left = 0; // Pointer at the beginning of the string
        int right = str.Length - 1; // Pointer at the end of the string

        // Loop through the string until the pointers meet in the middle
        while (left < right)
        {
            // Compare characters at the left and right pointers
            if (str[left] != str[right])
            {
                return false; // Return false if characters don't match
            }

            left++; // Move the left pointer towards the center
            right--; // Move the right pointer towards the center
        }

        return true; // Return true if the string is a palindrome
    }

    static void Main()
    {
        // Test the IsPalindrome function with the string "RADAR"
        string testString = "RADAR";
        if (IsPalindrome(testString))
        {
            Console.WriteLine($"{testString} is a palindrome.");
        }
        else
        {
            Console.WriteLine($"{testString} is not a palindrome.");
        }

        // Test the IsPalindrome function with a string that is not a palindrome
        testString = "HELLO";
        if (IsPalindrome(testString))
        {
            Console.WriteLine($"{testString} is a palindrome.");
        }
        else
        {
            Console.WriteLine($"{testString} is not a palindrome.");
        }
    }
}

 Output

RADAR is a palindrome.
HELLO is not a palindrome.

Comparte este ejercicio de C#

Practica más ejercicios C# de Funciones en C#

¡Explora nuestro conjunto de ejercicios de práctica de C#! Diseñados específicamente para principiantes, estos ejercicios te ayudarán a desarrollar una sólida comprensión de los fundamentos de C#. Desde variables y tipos de datos hasta estructuras de control y funciones simples, cada ejercicio está diseñado para desafiarte gradualmente a medida que adquieres confianza en la programación en C#..