Java 中的回文与数字
Closed. This question needs to be more focused. It is not currently accepting answers. 想要改进这个问题?通过编辑这篇文章来更新问题,使其仅…
为什么字符串不相等?
#include "usefunc.h" #define MY_SIZE 256 int inpArr(char tmp[], int size) { size = -1 while(1) { size++ if((tmp[size] = getchar()) == '\n') …
我如何找到这段代码的时间和空间复杂度?
我很难找到我编写的用于查找字符串中回文数的代码的空间和时间复杂度。 /** This program finds palindromes in a string. */ #include <stdio.h&g…
Python的reverse()用于回文
我刚刚开始使用 python,我正在尝试将用户输入的字符串作为回文进行测试。我的代码是: x=input('Please insert a word') y=reversed(x) if x==y: pri…
除了使用抽象数据类型“STACK”之外,还有其他方法来查找回文吗?
除了使用堆栈数据结构之外,我想要任何其他有效的方法来查找字符串的回文。这是我使用堆栈操作编写的代码。 /* * To change this template, choose To…
python 和回文
我最近编写了一个方法来循环遍历 /usr/share/dict/words 并使用我的 ispalindrome(x) 方法返回回文列表 这是一些代码...有什么问题吗?它只会停止 10 …
我可以获得有关 C 语言中的“isPalindrome()”函数的一些反馈吗?
我正在用 C 语言编写一些有用的函数。其中之一是 isPalindrome()。 我想确定一个数字是否是回文,我应该... 获取数组中的所有数字, 并使用两个索引进…