- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
由于一个指针:p_return_index
,我卡在了这个程序上。正如它所暗示的那样,它被纳入每个搜索功能,并且应该被赋予找到搜索号码的索引值。如果搜索的数字不在数组中,程序运行正常,但是当我输入数组中的数字时,出现段错误(核心转储)错误。传递指针一定是我做错了什么。因为它被赋予了索引号。我只是不知道如何解决这个问题。请注意,指针是用 NULL
初始化的;我认为这可能与它有关。显然,我不知道。
void show_data(int array[], int max_index, int searched_number);
/* Display the arrays contents on screen */
void search_results(char found, int *p_return_index);
/* Prints if data is found */
int ordered_seq_search(int array[], int max_index, int searched_number, int *p_return_index);
/* Ordered Sequential Search Algorithm */
int probability_search(int array[], int max_index, int searched_number, int *p_return_index);
/* Probability Search Algorithm */
int binary_search( int array[], int max_index, int searched_number, int *p_return_index);
/* Binary Search Algorithm */
/**********************************************************************/
/* Main Function */
/**********************************************************************/
int main()
{
int searched_number,
*p_return_index = NULL,
max_index = MAX_INDEX,
seq_data[DATA_SIZE],
prob_data[DATA_SIZE],
bin_data[DATA_SIZE];
char found_status;
/* Print the program heading and instructions */
printf("\n\n\n\n\n\n\n");
print_heading();
print_instructions();
/* Fill arrays with data */
fill_array(seq_data, max_index);
fill_array(prob_data, max_index);
fill_array(bin_data, max_index);
while(printf("\n\n\nEnter an integer search target (%d to quit): ",
QUIT), scanf("%d", &searched_number), searched_number != 0)
{
printf("\n");
printf("\nOrdered Sequential Search:");
show_data(seq_data, max_index, searched_number);
if(ordered_seq_search(seq_data, max_index, searched_number, p_return_index) == 1)
{
found_status = 'S';
search_results(found_status, p_return_index);
}
else
{
found_status = 'U';
search_results(found_status, p_return_index);
}
printf("\n\n");
printf("\nProbability Search:");
show_data(prob_data, max_index, searched_number);
if(probability_search(prob_data, max_index, searched_number, p_return_index) == 1)
{
found_status = 'S';
search_results(found_status, p_return_index);
}
else
{
found_status = 'U';
search_results(found_status, p_return_index);
}
printf("\n\n");
printf("\nBinary Search:");
show_data(bin_data, max_index, searched_number);
if(binary_search(bin_data, max_index, searched_number, p_return_index) == 1)
{
found_status = 'S';
search_results(found_status, p_return_index);
}
else
{
found_status = 'U';
search_results(found_status, p_return_index);
}
}
printf("\nThanks for searching. Have a nice day! ;-)");
printf("\n\n\n\n\n");
return 0;
}
/**********************************************************************/
/* Print the program heading */
/**********************************************************************/
void print_heading()
{
printf("\n========================================================");
printf("\n Program Number: %d", PROGRAM_NUMBER);
printf("\n Programmer: %s", PROGRAMMER_NAME);
printf("\n PCC Course Number: %s", COURSE_NUMBER);
printf("\n========================================================");
return;
}
/**********************************************************************/
/* Print the program instructions */
/**********************************************************************/
void print_instructions()
{
printf("\nThis program demonstrates various search algorithms.");
printf("\nYou enter in any whole number, and the program will");
printf("\nsearch for it in an ORDERED array of whole numbers");
printf("\nusing each of the following search algorithms:");
printf("\n 1. Ordered Sequential Search");
printf("\n 2. Probability Search");
printf("\n 3. Binary Search");
printf("\nThe progress of each search is shown so the efficiency");
printf("\nof the search algorithms can be compared.");
return;
}
/**********************************************************************/
/* Fill the array */
/**********************************************************************/
void fill_array(int array[], int max_index)
{
int index_value;
for(index_value = 0; index_value <= max_index; index_value++)
array[index_value] = (index_value * 5) + 10;
return;
}
/**********************************************************************/
/* Show the data */
/**********************************************************************/
void show_data(int array[], int max_index, int searched_number)
{
int count;
printf("\n Array Index: ");
for (count = 0; count <= MAX_INDEX ; count++)
printf("[%2d]", count);
printf("\n Array Data: ");
for (count = 0; count <= MAX_INDEX; count++)
printf(" %2d ", array[count]);
printf("\n User Target: %2d", searched_number);
return;
}
/*****************************************************************/
/* Found Stuff */
/************/
void search_results(char found, int *p_return_index)
{
printf("\nSearch Outcome: ");
if(found == 'S')
printf("Successful - target found at index [%2d]", *p_return_index);
//The run-time error happens here. So, it definitely has to be the pointer.
if(found == 'U')
printf("Unsuccessful - target not found");
if(found != 'S' && found != 'U')
printf("Undetermined");
return;
}
/**********************************************************************/
/* Ordered Sequential Search */
/**********************************************************************/
int ordered_seq_search(int array[], int max_index, int searched_number, int *p_return_index)
{
int index = 0;
printf("\n Search Path: ");
while (printf("[%2d]", index),
index < max_index && searched_number != array[index - 1] &&
searched_number > array[index])
{
index++;
}
if(searched_number == array[index])
{
p_return_index = &index;
printf("\n%d", *p_return_index);
//This is just to show that `p_return_index` does get the right value.
return 1;
}
else
return 0;
}
/**********************************************************************/
/* Probability Search */
/**********************************************************************/
int probability_search(int array[], int max_index, int searched_number, int *p_return_index)
{
int index = 0;
int temp;
printf("\n Search Path: ");
while (printf("[%2d]", index),
index < max_index && searched_number != array[index])
{
index++;
}
if(searched_number == array[index])
{
p_return_index = &index;
if(index > 1)
{
temp = array[index - 1];
array[index - 1] = array[index];
array[index] = temp;
array = array - 1;
}
return 1;
}
else{
return 0;
}
}
/**********************************************************************/
/* Binary Search */
/**********************************************************************/
int binary_search( int array[], int max_index, int searched_number, int *p_return_index)
{
int begin, end, middle;
begin = 0;
end = max_index;
printf("\n Search Path: ");
while( begin <= end )
{
middle = (begin + end) / 2;
if(searched_number > array[middle])
{
printf("[%2d]", middle);
begin = middle + 1;
}
else if(searched_number < array[middle])
{
printf("[%2d]", middle);
end = middle - 1;
}
else
{
printf("[%2d]", middle);
begin = end + 1;
}
}
if(searched_number == array[middle])
{
p_return_index = &middle;
return 1;
}
else
return 0;
}
帮助将不胜感激。
最佳答案
你正在做的是:
您声明一个指针并为其分配 NULL。
您将此 NULL 值传递给函数。
该函数尝试读取指针后面的内存。由于指针仍存储地址 NULL,因此该函数尝试读取地址 NULL 处的内存,该地址不存在。
使用指针参数作为返回值的习惯用法是这样的:
您可以像以前那样定义一个指针参数。
void foo(int* myReturnArgument);
在调用代码中,您定义了一个不是指针的变量。然后您获取该变量的地址并将其传递给函数。
int bar;
foo(&bar);
在函数中,您操作指针指向的值。
void foo(int* myReturnArgument) {
*myReturnArgument = 42;
}
关于c - 通过函数传递指针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20166612/
我刚接触 C 语言几周,所以对它还很陌生。 我见过这样的事情 * (variable-name) = -* (variable-name) 在讲义中,但它到底会做什么?它会否定所指向的值吗? 最佳答案
我有一个指向内存地址的void 指针。然后,我做 int 指针 = void 指针 float 指针 = void 指针 然后,取消引用它们以获取值。 { int x = 25; vo
我正在与计算机控制的泵进行一些串行端口通信,我用来通信的 createfile 函数需要将 com 端口名称解析为 wchar_t 指针。 我也在使用 QT 创建一个表单并获取 com 端口名称作为
#include "stdio.h" #include "malloc.h" int main() { char*x=(char*)malloc(1024); *(x+2)=3; --
#include #include main() { int an_int; void *void_pointer = &an_int; double *double_ptr = void
对于每个时间步长,我都有一个二维矩阵 a[ix][iz],ix 从 0 到 nx-1 和 iz 从 0 到 nz-1。 为了组装所有时间步长的矩阵,我定义了一个长度为 nx*nz*nt 的 3D 指针
我有一个函数,它接受一个指向 char ** 的指针并用字符串填充它(我猜是一个字符串数组)。 *list_of_strings* 在函数内部分配内存。 char * *list_of_strings
我试图了解当涉及到字符和字符串时,内存分配是如何工作的。 我知道声明的数组的名称就像指向数组第一个元素的指针,但该数组将驻留在内存的堆栈中。 另一方面,当我们想要使用内存堆时,我们使用 malloc,
我有一个 C 语言的 .DLL 文件。该 DLL 中所有函数所需的主要结构具有以下形式。 typedef struct { char *snsAccessID; char *
指针, C语言的精髓 莫队先咕几天, 容我先讲完树剖 (因为后面树上的东西好多都要用树剖求 LCA). 什么是指针 保存变量地址的变量叫做指针. 这是大概的定义, 但是Defad认为
我得到了以下数组: let arr = [ { children: [ { children: [], current: tru
#include int main(void) { int i; int *ptr = (int *) malloc(5 * sizeof(int)); for (i=0;
我正在编写一个程序,它接受一个三位数整数并将其分成两个整数。 224 将变为 220 和 4。 114 将变为 110 和 4。 基本上,您可以使用模数来完成。我写了我认为应该工作的东西,编译器一直说
好吧,我对 C++ 很陌生,我确定这个问题已经在某个地方得到了回答,而且也很简单,但我似乎找不到答案.... 我有一个自定义数组类,我将其用作练习来尝试了解其工作原理,其定义如下: 标题: class
1) this 指针与其他指针有何不同?据我了解,指针指向堆中的内存。如果有指向它们的指针,这是否意味着对象总是在堆中构造? 2)我们可以在 move 构造函数或 move 赋值中窃取this指针吗?
这个问题在这里已经有了答案: 关闭 11 年前。 Possible Duplicate: C : pointer to struct in the struct definition 在我的初学者类
我有两个指向指针的结构指针 typedef struct Square { ... ... }Square; Square **s1; //Representing 2D array of say,
变量在内存中是如何定位的?我有这个代码 int w=1; int x=1; int y=1; int z=1; int main(int argc, char** argv) { printf
#include #include main() { char *q[]={"black","white","red"}; printf("%s",*q+3); getch()
我在“C”类中有以下函数 class C { template void Func1(int x); template void Func2(int x); }; template void
我是一名优秀的程序员,十分优秀!