- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在用 C 编写凯撒密码程序。我已经编写了该程序,但有时在运行时会出错。
代码:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
int main() {
int size=10,al=0;
int sizek=10,ak=0;
char *str= (char *) malloc(size+5);
if (str == NULL) {
printf("malloc error\n");
return 0;
}
char *strIni=str;
char *str2= (char *) malloc(sizek+5);
if (str2 == NULL) {
printf("malloc error\n");
return 0;
}
char *str2Ini=str2;
//char a,b;
while ((str[al]=getchar())!='\n') {
if (al==size-2){
size=size+10;
char *strR=(char *) realloc(str,size);
if (strR == NULL) {
printf("malloc error\n");
return 0;
}
printf("DDDD\n");
strIni=strR;
}
al++;
}
printf("Or1 %d Al %d\n",strlen(strIni),al );
str[al]='\0';
printf("Af %d Al %d\n",strlen(strIni),al );
while ((str2[ak]=getchar())!='\n') {
if (ak==sizek-2){
sizek=sizek+10;
char *str2R=(char *) realloc(str2,sizek+5);
if (str2R == NULL) {
printf("malloc error\n");
return 0;
}
printf("CCCC\n");
str=str2R;
}
ak++;
}
printf("Or2 %d Ak %d\n",strlen(str2Ini),ak );
str2[ak]='\0';
printf("Af2 %d Ak %d\n",strlen(str2Ini),ak );
printf("Str1 %s\n",strIni );
printf("Str2 %s\n",str2Ini );
int sDup=1;
int dif[strlen(str2Ini)];
int* dup=(int *) malloc(sizek);
int max[(sDup)];
int rot[2]={0,0};
for (int i=0;i<(strlen(str2Ini));i++){ //pokud AA - aa -xy)
if (str2Ini[i]<123&&str2Ini[i]>96 &&strIni[i]<91&&strIni[i]>64){
dif[i]=(int)str2Ini[i]-((int)strIni[i]+6);
} else if (strIni[i]<123&&strIni[i]>96 &&str2Ini[i]<91&&str2Ini[i]>64){
dif[i]=(int)strIni[i]-((int)str2Ini[i]+6);
} else if (strIni[i]<123&&strIni[i]>96 &&str2Ini[i]<123&&str2Ini[i]>96) {
dif[i]=(int)strIni[i]-((int)str2Ini[i]);
} else if (strIni[i]<91&&strIni[i]>64 &&str2Ini[i]<91&&str2Ini[i]>64){
dif[i]=(int)strIni[i]-((int)str2Ini[i]);
}
if (dif[i]<0) {
dif[i]=-1*dif[i];
}
printf("Dif%d: %d\n",i,dif[i]);
}
for (int i=0;i<strlen(strIni);i++) {
int l=0;
for (int j=0;j<sDup;j++) {
if (dif[i]==dup[j]) {
max[j]++;
l++;
break;
}
}
if (l==0){
dup[sDup-1]=dif[i];
max[sDup-1]=0;
max[sDup-1]+=1;
sDup++;
}
}
for (int h=0;h<1;h++){
for (int i=0;i<(sDup-1);i++) {
if(rot[0]>max[i]) {
rot[0]=rot[0];
} else {
rot[0]=max[i];
rot[1]=dup[i];
}
}
}
for (int i=0;i<strlen(strIni);i++){
if (((int)strIni[i]>64 && (int)strIni[i]<91) || ((int)strIni[i]>96 && (int)strIni[i]<123)){
continue;
} else {
fprintf(stderr, "Error: Chybny vstup!\n");/*free(strIni);free(str2Ini);free(dup); */return 100;
}
}
for (int i=0;i<strlen(strIni);i++){
if (((int)strIni[i]>64 && (int)strIni[i]<91) || ((int)strIni[i]>96 && (int)strIni[i]<123)){
if (strlen(strIni)==(strlen(str2Ini))) {
if ((int)strIni[i]+(int)rot[1]>90 && (int)strIni[i]<91) {
strIni[i]=strIni[i]+6+(int)rot[1];
} else if ((int)strIni[i]+(int)rot[1]>122 && (int)strIni[i]<123) {
strIni[i]=(strIni[i]-58+rot[1]);
} else if ((int)strIni[i]>64 && ((int)strIni[i]+rot[1])<91) {
strIni[i]=strIni[i]+rot[1];
} else if ((int)strIni[i]>96 && ((int)strIni[i]+rot[1])<123) {
strIni[i]=strIni[i]+rot[1];
} else {
strIni[i]='#';
}
//printf("%c ",strIni[i] );
} else {fprintf(stderr, "SSError: Chybna delka vstupu!\n");/*free(strIni);free(str2Ini);free(dup);*/ return 101;
}
} else {
fprintf(stderr, "Error: Chybny vstup!\n");/*free(strIni);free(str2Ini);free(dup);*/ return 100;
}
}
str[al]='\0';
printf("Rot: %d\n",rot[1] );
printf("String: %s\n",strIni );
// free(strIni);free(str2Ini);free(dup);
//freeIni, dup
///posun o 42pismen
return 0;
}
我评论释放分配的空间,因为它也给我一个错误。我想稍后再处理。
除了最后一个之外的所有 printfs 都只是为了让我知道这段代码做了什么,以及它在哪里停止。
简单的代码:我用 getchar 在 str 和 str2 中得到 2 个字符串。 (Var al 和 ak 是通常的 i。)然后如果它们大于 (size(10)-2) 我重新分配 size+10。然后我使用字符串并区分字符。然后我寻找最常用的差异并将其用作最终轮换。之后,我只是用计算好的旋转来旋转我的第一个弦。
输入:
qrstuvwxyzABCDEFGHIJKLMNnop
aHcQefghWjdlmnopqostuvTxyYZ
输出:
DDDD
DDDD
Or1 19 Al 27
Af 19 Al 27
错误:
prog: malloc.c:2842: mremap_chunk: Assertion `((size + offset) & (_rtld_global_ro._dl_pagesize - 1)) == 0' failed.
预期输出:
abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRS
最佳答案
在您的第一个循环中,您重新分配了 str
,但没有将新值分配回 str
,尽管您确实访问了什么str
指向后面。如果 realloc
移动它(这是允许的),这将导致问题。与第二个循环中的 str2
类似。
关于c - 使用 malloc 和 realloc 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40952722/
如果 realloc 失败并返回 NULL 是前一个缓冲区被释放还是保持不变?我没有在手册页中找到那条特定的信息,我不确定该怎么做。如果内存被释放,那么双重释放可能会有风险。如果没有,就会发生泄漏。
OS: Linux CC: GCC 4.8.2 目标:改变 char* 的大小 -> 变小 问题:更改后的大小相同... 行是带有数据的字符串... 代码片段: char * tmp = NUL
在一个函数中我使用了 malloc : void name1(struct stos* s) { s = malloc (4 * sizeof (int)); } 一切正常。但是后来我用了rea
我知道有一个 realloc允许我调整内存块大小的函数(它与一个免费函数配对)。但是,我正在尝试对一些成员指针使用 new 而不是 realloc 分配内存的 c++ 类执行相同的操作。在 C++ 中
我正在尝试在 C 中创建一个动态整数数组,它应该在填满后自动将其大小加倍。 要扩展数组的大小,我想使用 realloc 函数。不幸的是,指向我的 DynamicArray 和 GCC 崩溃的数据的指针
这是我被教导使用的方式 realloc() : int *a = malloc(10); a = realloc(a, 100); // Why do we do "a = .... ?" if(a
我尝试在每个循环中使用 realloc(),因此我只为 C 中的 int 数组使用必要的内存,但输出值已更改。尽管如此,在我的代码中使用 Valgrind 时,我得到了正确的值。 我在做 Advent
平台:Linux 3.2.0 x86 (Debian Wheezy) 编译器:GCC 4.7.2 (Debian 4.7.2-5) 我想知道如果我尝试 realloc() 一个已递增的指针会发生什么。
我知道可以在内核中使用 malloc 在 GPU 的全局内存上分配内存。是否也可以使用realloc? 最佳答案 您可以为您的数据类型编写自己的 realloc 设备函数。 只需为新数组分配新空间,将
我在对数组使用 malloc/realloc 命令时遇到了一些问题。我创建了一个包含一些整数的小数组,并尝试通过使用 realloc 扩展大小并添加值来为其添加一个值,但是当我这样做时,0 索引的值不
背景: 我使用 calloc() 创建了一个数组,一切都运行良好。然后我使用 realloc() 使数组更大。它似乎只是创建一个没有任何内容的新指针,并在我尝试访问数组中的元素时调用运行时错误。 我的
假设我已经使用 malloc() 分配了内存,如果我在我的代码中这样做: char *newline = realloc ( oldline , newsize ); // Assuming oldl
我正在尝试在下面的程序中使用 realloc 重新分配内存,并在我使用 malloc(i = (int*)malloc(5 * sizeof(int))) 使用react的 realloc 初始内存之
为什么下面的代码输出两次 4,而不是 8 和 20?谢谢 int size = 0; int *pointer; pointer = malloc(2 * sizeof(int)); size = s
我正在尝试将一堆 WCHAR 添加到缓冲区。这个函数就是将它添加到我的缓冲区中的原因.. DWORD add_to_buffer(BYTE *databuffer, WCHAR *path, WCHA
可能我的大脑现在不能正常工作......我想知道为什么我在我的代码中收到提到的错误: int ** zm; zm = (int**)calloc(1, sizeof(int*)); *zm = (in
我正在尝试用 C 语言编写代码,但遇到了 realloc 的问题。该代码在某个时间点工作正常,但在另一时间重新分配期间因堆损坏错误而崩溃。我已将填充数据的结构和函数粘贴到其中。谁能告诉我我是否在这里做
realloc 会改变它的第一个参数吗? 改变第一个参数是否取决于实现? 有什么理由不应该是const吗?作为反例,memcpy 将其 src 参数设为 const。 ISO C 标准,第 7.20.
我在 realloc 中遇到此错误,该错误仅发生在我学校的实验室计算机上,而不发生在我的计算机上。 在此程序中,我将行号存储在 File_Node 结构中。 File_Node 是一个链表的一部分,每
来自 man realloc:realloc() 函数返回一个指向新分配的内存的指针,该指针适合任何类型的变量,可能与 ptr 不同,如果请求失败,则返回 NULL . 因此在此代码片段中: ptr
我是一名优秀的程序员,十分优秀!