gpt4 book ai didi

c - 如何在 gdb 中使用输入文件

转载 作者:行者123 更新时间:2023-12-01 06:14:26 35 4
gpt4 key购买 nike

我通常在编写程序时使用输入文件,这样我就可以避免一次又一次地输入数字的麻烦。

这是我为快速排序编写的一个程序,其中一些地方给了我段错误

#include<stdio.h>
int partition (int *,int,int);
void quicksort (int *,int,int);
int main()
{
int i,j,a[15],choice;
int length;
printf("Entering numbers in array \n");
for(i=0;i<=14;i++)
scanf("%d",&a[i]);
printf("the sorted array is\n");
length=sizeof(a);
quicksort(a,0,length-1);
for(i=0;i<=14;i++)
printf (" %d ",a[i]);
}
int partition(int *num,int p,int r)
{
int x,j,i,temp;
x=num[r];
i=-1;
for(j=0;j<=r-1;j++)
{
if(num[j]<=x)
{
i=i+1;
temp=num[i];
num[i]=num[j];
num[j]=temp;
}
}
num[i+1]=num[r];
return i+1;
}


void quicksort (int *num,int p,int r)
{
int q;
if (p<r)
{
q=partition(num,p,r);
quicksort(num,p,q-1);
quicksort(num,q+1,r);
}
}

这是我的输入文件 input.txt
43 12 90 3 49 108 65 21 9 8 0 71  66 81

当我编译如下
cc quicksort.c
./a.out < input.txt

现在我得到的输出是
Entering numbers in array 
the sorted array is
Segmentation fault

我想知道的是我经常使用 gdb 来调试此类问题。
是否有可能在 gdb 中我从同一个文件 input.txt 中获取输入

我使用 gdb 的命令集是
cc -g quicksort.c
gdb
GNU gdb (GDB) 7.1-ubuntu
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
(gdb) file a.out
(gdb) break quicksort.c:3
(gdb) run

现在我想知道的是如何使用 gdb 中的输入文件,这样我就不会一次又一次地输入我想输入的数组?

最佳答案

与往常一样,在这种“常见”用例中,谷歌是您的 friend 。

How to load program reading stdin and taking parameters in gdb?

Input redirection in gdb (MinGW)

关于c - 如何在 gdb 中使用输入文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6421921/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com