- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
int main() {
int yearsToLoop;
cin >> yearsToLoop;
annual_stats* ptr = new annual_stats [yearsToLoop];
for (int i = 0; i < yearsToLoop; i++)
{
int annualYear;
cin >> annualYear;
ptr[i].year = annualYear;
for (int j = 0; j < NO_TEAMS; j++)
{
string team_name;
getline(cin, team_name, '\t');
strcpy(ptr[i].teams[j].team_name, team_name.c_str());
int games;
cin >> games;
ptr[i].teams[j].games = games;
float pts_per_game;
cin >> pts_per_game;
ptr[i].teams[j].pts_per_game = pts_per_game;
int total_points;
cin >> total_points;
ptr[i].teams[j].total_points = total_points;
int scrimmage_plays;
cin >> scrimmage_plays;
ptr[i].teams[j].scrimmage_plays = scrimmage_plays;
float yds_per_game;
cin >> yds_per_game;
ptr[i].teams[j].yds_per_game = yds_per_game;
float yds_per_play;
cin >> yds_per_play;
ptr[i].teams[j].yds_per_play = yds_per_play;
float first_per_game;
cin >> first_per_game;
ptr[i].teams[j].first_per_game = first_per_game;
int third_md;
cin >> third_md;
ptr[i].teams[j].third_md = third_md;
int third_att;
cin >> third_att;
ptr[i].teams[j].third_att = third_att;
int third_pct;
cin >> third_pct;
ptr[i].teams[j].third_pct = third_pct;
int fourth_md;
cin >> fourth_md;
ptr[i].teams[j].fourth_md = fourth_md;
int fourth_att;
cin >> fourth_att;
ptr[i].teams[j].fourth_att = fourth_att;
int fourth_pct;
cin >> fourth_pct;
ptr[i].teams[j].fourth_pct = fourth_pct;
int penalties;
cin >> penalties;
ptr[i].teams[j].penalties = penalties;
int pen_yds;
cin >> pen_yds;
ptr[i].teams[j].pen_yds = pen_yds;
string top_per_game;
cin >> top_per_game;
strcpy(ptr[i].teams[j].top_per_game, top_per_game.c_str());
int fum;
cin >> fum;
ptr[i].teams[j].fum = fum;
int lost;
cin >> lost;
ptr[i].teams[j].lost = lost;
int to;
cin >> to;
ptr[i].teams[j].to = to;
}
}
int numberOfC;
cin >> numberOfC;
for (int i = 0; i < numberOfC; i++)
{
string command;
cin >> command;
if(command == "qsort") {
string command2;
cin >> command2;
int num = atoi(command2.c_str());
if (num >= 2010)
{
string year;
year = command2;
string field;
cin >> field;
string order;
cin >> order;
qSortYearFieldOrder(year, field, order, ptr, yearsToLoop);
}
}
所以就在(部分)main 中,我获得了所有输入,然后使用一些输入调用了一个函数。我目前遇到 qSortYearFieldOrder(year, field, order, ptr, yearsToLoop) 错误。
void qSortYearFieldOrder(string year, string field, string order, annual_stats* ptr, int amountYears) {
int yearIndex = 0;
if (amountYears == 1) {
yearIndex == 0;
}
else {
if (year == "2010") {
yearIndex = 0;
}
else if (year == "2011") {
yearIndex = 1;
}
else if (year == "2012") {
yearIndex = 2;
}
else if (year == "2013") {
yearIndex = 3;
}
else if (year == "2014") {
yearIndex = 4;
}
else if (year == "2015") {
yearIndex = 5;
}
}
if (field == "team_name") {
if (order == "decr") {
cout << "\n\nDecreasing Order" << endl;
for (int i = 0; i < NO_TEAMS; i++) {
cout << ptr[yearIndex].teams[i].team_name;
}
}
else if (order == "incr") {
cout << "\n\nIncreasing Order" << endl;
for (int i = 0; i < NO_TEAMS; i++) {
cout << ptr[yearIndex].teams[NO_TEAMS - 1 - i].team_name;
}
}
}
else if (field == "games") {
if (order == "decr") {
quicksortGames(ptr, 0, NO_TEAMS - 1, yearIndex, order);
cout << "TEAM" << "\t\t" << "Number Of Games Decreasing";
for (int i = 0; i < NO_TEAMS; i++) {
cout << ptr[yearIndex].teams[i].team_name << " " << ptr[yearIndex].teams[NO_TEAMS - 1 - i].games;
}
}
else if (order == "incr") {
quicksortGames(ptr, 0, NO_TEAMS - 1, yearIndex, order);
cout << "TEAM" << "\t\t" << "Number Of Games Increasing";
for (int i = 0; i < NO_TEAMS; i++) {
cout << ptr[yearIndex].teams[NO_TEAMS - 1 - i].team_name << " " << ptr[yearIndex].teams[i].games;
}
}
}
然后在这个函数中,我根据代码所在的字段以及递增/递减顺序对代码进行排序。
void quicksortGames(annual_stats* pointer, int firstIndex, int lastIndex, int yearIndex, string order)
{
//declaring index variables
int pivotIndex, temp, index1, index2;
if(firstIndex < lastIndex)
{
//assigning first element index as pivot element
pivotIndex = pointer[yearIndex].teams[firstIndex].games;
index1 = pointer[yearIndex].teams[firstIndex].games;
index2 = pointer[yearIndex].teams[lastIndex].games;
//Sorting in Ascending order with quick sort
while(index1 < index2)
{
while(pointer[yearIndex].teams[index1].games <= pointer[yearIndex].teams[pivotIndex].games && index1 < lastIndex)
{
index1++;
}
while(pointer[yearIndex].teams[index2].games <= pointer[yearIndex].teams[pivotIndex].games)
{
index2--;
}
if(index1<index2)
{
//Swapping opertation
temp = pointer[yearIndex].teams[index1].games;
pointer[yearIndex].teams[index1].games = pointer[yearIndex].teams[index2].games;
pointer[yearIndex].teams[index2].games = temp;
}
}
//At the end of first iteration, swap pivot element with index2 element
temp = pointer[yearIndex].teams[pivotIndex].games;
pointer[yearIndex].teams[pivotIndex].games = pointer[yearIndex].teams[index2].games;
pointer[yearIndex].teams[index2].games = temp;
//Recursive call for quick sort, with partiontioning
quicksortGames(pointer, firstIndex, index2-1, yearIndex, order);
quicksortGames(pointer, index2+1, lastIndex, yearIndex, order);
}
}
此功能用于快速排序游戏。我单独做了它,因为快速排序是递归的,因此我不能在以前的函数中快速排序。我从这个网站得到了快速排序:http://www.cprogramto.com/c-program-quick-sort/ .
基本上,我试图获取所有输入,将它们放入一个按字段/顺序排序的函数中,然后专门为该字段调用快速排序。
代码可以编译,但每当我尝试使用类似于 qsort 2015 games decr 等的代码运行代码时,我目前都会收到段错误 11 错误。当我省略 qsort 时,我的代码运行并适用于另一个排序算法(此处未显示)因此我确定错误在快速排序范围内。有人可以帮我看看我的错误到底在哪里吗?
最佳答案
考虑:
pivotIndex = pointer[yearIndex].teams[firstIndex].games;
index1 = pointer[yearIndex].teams[firstIndex].games;
index2 = pointer[yearIndex].teams[lastIndex].games;
...
while(pointer[yearIndex].teams[index1].games <= pointer[yearIndex].teams[pivotIndex].games && index1 < lastIndex)
您将数组索引(index1、index2)设置为游戏数。
不能保证少于团队数组中元素的数量。
因此,您最终会越界访问团队数组 == 段错误。
更多信息:将您的代码与您从中获取算法的站点进行比较:
...
index2 = lastIndex;
//Sorting in Ascending order with quick sort
while(index1 < index2)
{
while(array[index1] <= array[pivotIndex] && index1 < lastIndex)
{
index1++;
....
Index 是数组中的位置,其中 array[index] 是值。在您的情况下,您正在(内部)while 循环中正确进行比较:
while(pointer[yearIndex].teams[index1].games <= pointer[yearIndex].teams[pivotIndex].games && index1 < lastIndex)
但是你设置的索引不正确:
index1 = pointer[yearIndex].teams[firstIndex].games;
为了更具体一点,假设有 10 支球队,但第一支球队(第 0 支球队)打了 1000 场比赛。然后你的代码会这样做:
index1 = pointer[yearIndex].teams[0].games; // index1=1000
while(pointer[yearIndex].teams[1000].games <=
pointer[yearIndex].teams[1000].games && 1000 < 9)
问题是,如果只有 10 个团队,那么 teams[1000] 是无效的,当您在 C 中像这样越界访问数组时,您会遇到段错误(如果幸运的话)或内存损坏和/或安全漏洞(如果你不走运)。
此外,评论中提出的学习源代码调试器(GDB 或其他 - 取决于您的平台)的建议对于学习 C 语言至关重要。
关于c++ - Quicksort 出现段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35567688/
我已经使用 vue-cli 两个星期了,直到今天一切正常。我在本地建立这个项目。 https://drive.google.com/open?id=0BwGw1zyyKjW7S3RYWXRaX24tQ
您好,我正在尝试使用 python 库 pytesseract 从图像中提取文本。请找到代码: from PIL import Image from pytesseract import image_
我的错误 /usr/bin/ld: errno: TLS definition in /lib/libc.so.6 section .tbss mismatches non-TLS reference
我已经训练了一个模型,我正在尝试使用 predict函数但它返回以下错误。 Error in contrasts<-(*tmp*, value = contr.funs[1 + isOF[nn]])
根据Microsoft DataConnectors的信息我想通过 this ODBC driver 创建一个从 PowerBi 到 PostgreSQL 的连接器使用直接查询。我重用了 Micros
我已经为 SoundManagement 创建了一个包,其中有一个扩展 MediaPlayer 的类。我希望全局控制这个变量。这是我的代码: package soundmanagement; impo
我在Heroku上部署了一个应用程序。我正在使用免费服务。 我经常收到以下错误消息。 PG::Error: ERROR: out of memory 如果刷新浏览器,就可以了。但是随后,它又随机发生
我正在运行 LAMP 服务器,这个 .htaccess 给我一个 500 错误。其作用是过滤关键字并重定向到相应的域名。 Options +FollowSymLinks RewriteEngine
我有两个驱动器 A 和 B。使用 python 脚本,我在“A”驱动器中创建一些文件,并运行 powerscript,该脚本以 1 秒的间隔将驱动器 A 中的所有文件复制到驱动器 B。 我在 powe
下面的函数一直返回这个错误信息。我认为可能是 double_precision 字段类型导致了这种情况,我尝试使用 CAST,但要么不是这样,要么我没有做对...帮助? 这是错误: ERROR: i
这个问题已经有答案了: Syntax error due to using a reserved word as a table or column name in MySQL (1 个回答) 已关闭
我的数据库有这个小问题。 我创建了一个表“articoli”,其中包含商品的品牌、型号和价格。 每篇文章都由一个 id (ID_ARTICOLO)` 定义,它是一个自动递增字段。 好吧,现在当我尝试插
我是新来的。我目前正在 DeVry 在线学习中级 C++ 编程。我们正在使用 C++ Primer Plus 这本书,到目前为止我一直做得很好。我的老师最近向我们扔了一个曲线球。我目前的任务是这样的:
这个问题在这里已经有了答案: What is an undefined reference/unresolved external symbol error and how do I fix it?
我的网站中有一段代码有问题;此错误仅发生在 Internet Explorer 7 中。 我没有在这里发布我所有的 HTML/CSS 标记,而是发布了网站的一个版本 here . 如您所见,我在列中有
如果尝试在 USB 设备上构建 node.js 应用程序时在我的树莓派上使用 npm 时遇到一些问题。 package.json 看起来像这样: { "name" : "node-todo",
在 Python 中,您有 None单例,在某些情况下表现得很奇怪: >>> a = None >>> type(a) >>> isinstance(a,None) Traceback (most
这是我的 build.gradle (Module:app) 文件: apply plugin: 'com.android.application' android { compileSdkV
我是 android 的新手,我的项目刚才编译和运行正常,但在我尝试实现抽屉导航后,它给了我这个错误 FAILURE: Build failed with an exception. What wen
谁能解释一下?我想我正在做一些非常愚蠢的事情,并且急切地等待着启蒙。 我得到这个输出: phpversion() == 7.2.25-1+0~20191128.32+debian8~1.gbp108
我是一名优秀的程序员,十分优秀!