- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在为我的类(class)在 Linux Ubuntu 上编写 C++ 程序。该程序应该找到用户输入的字符串的频率。频率的计算方法是每个字符出现在句子中的数量,然后除以句子中的最大字符数。之后,我根据每个字符出现的百分比打印出星号。这是我写的代码
#include <iostream>
#include <string>
#include <cstring>
#include <cmath>
using namespace std;
int main(){
string text;//partial text for each whitespace
string finalText;//String that has been concat
int totalLetter=0;//Total number of all letter
double storedValue[26];//Giving Result to each array
int i;//"for" statement counter declaring
int j;//"for" statement second counter declaring
int letters[26];//array to reducing ascii value on line 26
cout << "Enter the text at the prompt to calculate letter frequencies. " << endl <<
"Enter DONE when finished with the input."<< endl;
while(text!="DONE"){//check the input, if it's not "DONE" then continue adding string
cout<< "Enter a line of a text: ";
std::getline(std::cin,text);
if(text=="DONE")break;
finalText = finalText + text;
}
char *charArray = new char[finalText.length()+1];//Converting string input to char type
std::strcpy(charArray,finalText.c_str());//Copying string to char
for(i=0; i<finalText.length(); i++){//reduce to smaller case
if(charArray[i]>='A' && charArray[i]<='Z')
charArray[i]=charArray[i]+32;
}
for(i=0; i<finalText.length(); i++){//set default for charArray to be 0
if(charArray[i]<'a' && charArray[i]>'z'){
charArray[i]=0;
}
}
for(i=0; i<finalText.length(); i++){//calculate the total characters input
if(charArray[i]>='a' && charArray[i]<='z'){
totalLetter++;
}
}
for(i=0; i<26; i++){//Set all storeValue to be 0 from a - z
storedValue[i] = 0;
}
for(i=0; i<finalText.length(); i++){//convert letters to start at 0 as an 'a' from ascii code and so on
letters[i]=(int)charArray[i]-97;
storedValue[i] = 0;
}
for(i=0; i<finalText.length(); i++){//increment value in array for each letter
for(j=0; j<26; j++){
if(letters[i]==j)
storedValue[j]++;
}
}
cout << endl;
cout << "A total of " << totalLetter << " letters of the alphabet were processed" << endl;
cout << endl;
cout << "a b c d e f g h i j k l m n o p q r s t u v w x y z %"<<endl;
//calculate the percent
for(i=0; i<26; i++){
storedValue[i]=round((storedValue[i]/totalLetter)*100);
}
cout<<endl;
//Get Maximum Percent
int maxPercent=0;
int maxLetterPercent=0;
for(i=0; i<25; i++){
if(storedValue[i]>maxPercent){
maxPercent=storedValue[i];
maxLetterPercent=i;
}
}
//Printing asterisk
for(i=0; i<maxPercent; i++){
for(j=0; j<26; j++){
if(storedValue[j]>0)
cout<<"* ";
else if(storedValue[j]<=maxPercent)
cout<<" ";
}
cout<<" "<<i+1;
cout<<endl;
}
char finalCharMax = maxLetterPercent + 'a';
cout<<"The most common letter is " << finalCharMax << " with a frequency of " << maxPercent
<< " %";
cout<<endl;
return 0;
}
执行后,显示完美结果;星号在它们应该在的地方。但是当我开始输入长句时出现了问题,例如我输入
Enter a line of text: asd asd asd asd asd asd asd asd asd asd asd asd asd
在我输入“DONE”后,它给出了垃圾结果,星号被弄乱了,在执行结束时,它显示了消息
Segmentation fault (core dumped)
在这种情况下,我做错了什么?
最佳答案
问题出在这部分代码中。字母数组的长度为 26 个项目,当您输入长文本时,堆栈已损坏。它会在 main() 函数调用结束时导致段错误。
for(i=0; i<finalText.length(); i++){//convert letters to start at 0 as an 'a' from ascii code and so on
letters[i]=(int)charArray[i]-97;
storedValue[i] = 0;
}
for(i=0; i<finalText.length(); i++){//increment value in array for each letter
for(j=0; j<26; j++){
if(letters[i]==j)
storedValue[j]++;
}
}
关于c++ - 执行结束时出现段错误(核心转储),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32432955/
Linux 有许多跨(假设是 2 个)CPU 内核执行的线程和进程。我希望我的单线程 C/C++ 应用程序成为 CPU0 上的唯一线程。我如何“移动”所有其他线程以使用 CPU1? 我知道我可以使用
我有一个类似于下图的数据库表 Table with 2 columns (UserId and value) 我将传递 UserId 和 2 个字符串。例如:userId: 1, key1: h1,
我想在我的新项目中使用 ASP.NET Core,因为我听说它更快。但是,该项目将使用广泛的数据库访问功能,Entity Framework Core 不支持其中一些功能。我想知道,是否可以使用 En
我已经使用 EntityFrameworkCore.SqlServer 2.0 开发了 asp .net core wep api 2.0 应用程序。它是使用数据库优先方法开发的。当尝试使用 dbco
我已经阅读了很多关于这个主题的文章,但我仍然无法处理这个问题。对不起,如果它是重复的,无论如何! 所以基本上,我正在从头开始构建一个 Angular 应用程序,并且我想按照最佳约定来组织我的代码。我有
我对MPI还是陌生的,所以如果这是一个琐碎的问题,请原谅我。我有一个四核CPU。我想运行一个在单个内核上使用两个进程的OpenMPI C++程序。有什么办法吗?如果是这样,那又如何?我提到了this
下面是一个传播异常处理机制的类问题,所需的输出是异常。任何人都可以解释为什么输出是异常,在此先感谢。 Class Question { public void m1() throws Excep
我想打印每个获得 CPU 时间片的进程的 name 和 pid。可能吗? 最佳答案 对于单个流程,您可以在以下位置获取此信息: /proc//stat 第14和第15个字段分别代表在用户态和内核态花费
我想知道是否可以识别具有特定 thread-id 的线程使用的物理处理器(核心)? 例如,我有一个多线程应用程序,它有两 (2) 个线程(例如,thread-id = 10 和 thread-id =
我有一个需要身份验证的 Solr 核心。假设我有一个用户,密码为password。当我现在尝试在控制台中创建一个 Solr 核心时 bin\solr create -c test 我收到 HTTP 错
我想为与使用它的项目不同的类库中的第二个和后续数据库创建迁移。有皱纹。我永远不会知道连接字符串,直到用户登录并且我可以从目录数据库 (saas) 中获取它。 对于目录数据库,我使用了来自 this 的
我想为一种可以产生 GHC Core 的简单语言创建一个前端。然后我想获取这个输出并通过正常的 GHC 管道运行它。根据this page , 不能直接通过 ghc 命令实现。我想知道是否有任何方法可
阅读文档,我构建了 2 个使用 BLE 连接 2 个 iDevices 的应用程序。 一个设备是中央设备,另一个是外围设备。 Central在寻找Peripheral,当找到它时,探索它的服务和特性,
在我的网络应用程序中,我对长时间运行的任务进行了操作,我想在后台调用此任务。因此,根据文档 .net core 3.1 Queued background tasks我为此使用这样的代码: publi
Solr 1.4 Enterprise Search Server 建议对核心副本进行大量更新,然后将其换成主核心。我正在按照以下步骤操作: 创建准备核心:http://localhost:8983/
它们是否存在,如果存在,文档和代码在哪里? 最佳答案 它们位于 Git 的 test 目录中。 https://github.com/jquery/jquery/tree/master/test 关于
我有一个 Lisp (SBCL 1.0.40.0.debian) 应用程序 (myfitnessdata),它使用以下代码来处理命令行参数: (:use :common-lisp) (:export
Core是GHC的中间语言。阅读Core可以帮助你更好地了解程序的性能。有人向我索要有关阅读 Core 的文档或教程,但我找不到太多。 有哪些文档可用于阅读 GHC Core? 这是我迄今为止发现的内
我有一个核心 WebJob 部署到 Azure Web 应用程序中。我正在使用WebJobs version 3.0.6 . 我注意到,WebJob 代码不会立即拾取对连接字符串和应用程序设置的更改(
我有一个在内部构造和使用 SqlConnection 类的第三方库。我可以从该类继承,但它有大量重载,到目前为止我一直无法找到合适的重载。我想要的是将参数附加到正在使用的连接字符串。 有没有办法在 .
我是一名优秀的程序员,十分优秀!