- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我目前正在开发一个模拟堆栈(使用链表)的 c 库。
堆栈必须能够管理任何数据类型。
它还必须能够将其内容写入文件,然后检索它们。这是我遇到问题的地方。当我将原始堆栈与我存储在文件中的堆栈进行比较时,数据是不一样的。
代码如下:
writeRead.c
#include <stdio.h>
#include "stack.h"
#define NODES 3
struct my_data {
int val;
char name[60];
};
int main() {
struct my_stack *s1, *fs1;
struct my_data *data, *data1, *data2;
// Initialize Stack
s1 = my_stack_init(sizeof(struct my_data));
// Initialize data and push to stack
for (int i = 0; i < NODES; i++) {
data = malloc(sizeof(struct my_data)); // We must allocate static memory
data->val = i;
sprintf(data->name, "Value %d", i);
if (my_stack_push(s1, data)) {
puts("Error in my_stack_push()");
exit(1);
}
printf("New node in s1: (%d, %s)\n", data->val, data->name);
}
// Write Stack to file
if (my_stack_write(s1, "/tmp/my_stack.data") == -1) {
puts("Error in my_stack_write (s1)");
exit(1);
}
// Read Stack from file
fs1 = my_stack_read("/tmp/my_stack.data");
if (!fs1) {
puts("Error in my_stack_read (fs1)");
exit(1);
}
// Compare data of stack s1 (memory) and fs1 (file)
while ((data1 = my_stack_pop(s1))) {
printf("FS1 len. %d\n",my_stack_len(fs1));
data2 = my_stack_pop(fs1);
printf("Node of s1: (%d, %s)\t", data1->val, data1->name);
printf("Node of fs1: (%d, %s)\n", data2->val, data2->name);
if (!data2 || data1->val != data2->val || my_strcmp(data1->name, data2->name)) {
printf("Data in s1 and fs1 are not the same.\n (data1->val: %d <> data2->val: %d) o (data1->name: %s <> data2->name: "
"%s)\n",
data1->val, data2->val, data1->name, data2->name);
exit(1);
}
}
return 0;
}
堆栈.h
#include <fcntl.h> /* Modos de apertura de función open()*/
#include <stdlib.h> /* Funciones malloc(), free(), y valor NULL */
#include <sys/stat.h> /* Permisos función open() */
#include <sys/types.h> /* Definiciones de tipos de datos como size_t*/
#include <unistd.h> /* Funciones read(), write(), close()*/
struct my_stack_node {
void *data;
struct my_stack_node *next;
};
struct my_stack {
int size;
struct my_stack_node *first;
};
int my_strcmp(const char *str1, const char *str2);
struct my_stack *my_stack_init(int size);
int my_stack_push(struct my_stack *stack, void *data);
void *my_stack_pop(struct my_stack *stack);
int my_stack_len(struct my_stack *stack);
struct my_stack *my_stack_read(char *filename);
int my_stack_write(struct my_stack *stack, char *filename);
int my_stack_purge(struct my_stack *stack);
堆栈.c
#include <stdio.h>
#include "stack.h"
int my_strcmp(const char *str1, const char *str2) {
int restultatCmp = *str1++ - *str2++;
//printf("ResultatCmp : %d \n", restultatCmp);
while(*str1++ && *str2++ && restultatCmp == 0) {
restultatCmp = *str1 - *str2;
}
return restultatCmp;
}
struct my_stack *my_stack_init(int dataSize) {
struct my_stack *stack = malloc(sizeof(struct my_stack));
stack -> first = NULL;
stack -> size = dataSize;
return stack;
}
int my_stack_push(struct my_stack *stack, void *dataIn) {
struct my_stack_node *nodeToPush;
nodeToPush = malloc(sizeof(struct my_stack_node));
if(stack == NULL && sizeof(dataIn)> 0){
printf("Null Stack or data size error.\n");
//la pila debe existir
return -1;
}
else {
nodeToPush -> data = dataIn;
if(stack -> first == NULL) {
nodeToPush -> next = NULL;
stack -> first = nodeToPush;
}
else {
nodeToPush -> next = stack -> first;
stack -> first = nodeToPush;
}
}
return 0;
}
void *my_stack_pop(struct my_stack *stack) {
if(stack -> first == NULL) {
return NULL;
}
struct my_stack_node *nodeToDelete = stack -> first;
void *data = nodeToDelete -> data;
stack -> first = nodeToDelete -> next;
free(nodeToDelete);
return data;
}
int my_stack_len(struct my_stack *stack) {
int numNodes = 0;
struct my_stack_node *currentElement = stack -> first;
while(currentElement != NULL) {
numNodes++;
currentElement = currentElement ->next;
}
return numNodes;
}
void recursiveWrite(struct my_stack_node *nodo, int fileDesc, int sizeData) {
if(nodo ->next != NULL) recursiveWrite(nodo -> next,fileDesc,sizeData);
if(write(fileDesc, nodo -> data, sizeData)== -1){
printf("Error de escritura\n");
return;// error escritura.
}
}
int my_stack_write(struct my_stack *stack, char *filename) {
struct my_stack_node *currentNode = stack -> first;
int fileDesc = open(filename, O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR);
if(fileDesc == -1) {
return -1; // Error open();
}
if(write(fileDesc, &stack -> size, sizeof(stack -> size)) == -1){
return -1; // Error write();
}
int sizeData = stack -> size;
recursiveWrite(currentNode,fileDesc,sizeData);
close(fileDesc);
return my_stack_len(stack);
}
struct my_stack *my_stack_read(char *filename) {
int fileDesc = open(filename, O_RDONLY, S_IRUSR);
if(fileDesc == -1) {
return NULL; // Error open();
}
char *buffer = malloc(sizeof(int));
int readBytes;
if((readBytes = read(fileDesc, buffer, sizeof(int))) == -1){
printf("Error reading data size.\n");
return NULL;
}
int dataSize = 0;
dataSize = (int) *buffer; // parse data Size from buffer.
struct my_stack *stack;
stack = malloc(sizeof(struct my_stack));
stack = my_stack_init(dataSize); // initialize Stack
buffer = realloc(buffer, stack -> size);
if(buffer == NULL){
return NULL;
}
else{
while(read(fileDesc, buffer, stack -> size) > 0) {
if((my_stack_push(stack,buffer))== -1){
printf("Error en my_stack_read: Push error.\n");
return NULL;
}
}
close(fileDesc);
return stack;
}
}
很抱歉,我尽量简化了这个例子。
输出:
New node in s1: (0, Value 0)
New node in s1: (1, Value 1)
New node in s1: (2, Value 2)
FS1 len. 3
Node of s1: (2, Value 2) Node of fs1: (2, Value 2)
FS1 len. 2
Node of s1: (1, Value 1) Node of fs1: (2, Value 2)
Data in s1 and fs1 are not the same.
(data1->val: 1 <> data2->val: 2) o (data1->name: Value 1 <> data2->name: Value 2)
预期输出:
New node in s1: (0, Value 0)
New node in s1: (1, Value 1)
New node in s1: (2, Value 2)
FS1 len. 3
Node of s1: (2, Value 2) Node of fs1: (2, Value 2)
FS1 len. 2
Node of s1: (1, Value 1) Node of fs1: (1, Value 1)
FS1 len. 1
Node of s1: (0, Value 0) Node of fs1: (0, Value 0)
我几乎可以肯定文件写入是正确的。用十六进制编辑器检查,应该是正确的。
所以我的猜测是我的错误在于读取文件。
忘了说项目的一个限制是系统调用 I/O 是强制性的。
非常感谢任何帮助。
提前致谢。
编辑1:
按照@AndrewHenle 的建议更改了 *my_stack_read(),输出仍然不是预期的。
struct my_stack *my_stack_read(char *filename) {
int fileDesc = open(filename, O_RDONLY, S_IRUSR);
if(fileDesc == -1) {
return NULL; // Error open();
}
char *buffer = malloc(sizeof(int));
ssize_t readBytes;
readBytes = read(fileDesc, buffer, sizeof(int));
if(readBytes == -1) {
return NULL;
}
int dataSize = 0;
dataSize = (int) *buffer; // parse data Size from buffer.
struct my_stack *stack;
stack = malloc(sizeof(struct my_stack));
stack = my_stack_init(dataSize); // initialize Stack
buffer = realloc(buffer, stack -> size);
if(buffer == NULL){
return NULL;
}
else{
while(read(fileDesc, buffer, stack -> size) > 0) {
int push = my_stack_push(stack,buffer);
if(push == -1){
printf("Error en my_stack_read: Push error.\n");
return NULL;
}
}
close(fileDesc);
return stack;
}
最佳答案
您正在以递归方式写入堆栈。下面的函数首先将堆栈的last 元素写入文件。它写入数据相反。
void recursiveWrite(struct my_stack_node *nodo, int fileDesc, int sizeData) {
if(nodo ->next != NULL) recursiveWrite(nodo -> next,fileDesc,sizeData);
if(write(fileDesc, nodo -> data, sizeData)== -1){
printf("Error de escritura\n");
return;// error escritura.
}
}
要以正确的顺序写入数据,您应该在write
函数之后调用递归函数。我还更改了 write
函数以将其从 if
条件中删除。
void recursiveWrite(struct my_stack_node *nodo, int fileDesc, int sizeData) {
int ret;
ret = write(fileDesc, nodo -> data, sizeData);
if(ret == -1){
printf("Error de escritura\n");
return;// error escritura.
}
if(nodo ->next != NULL) recursiveWrite(nodo -> next,fileDesc,sizeData);
}
关于C 堆栈管理器项目 : file I/O with syscalls problems,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52927678/
我很绝望,现在已经两天(!!)天都没有解决方案来解决以下问题。 更新 Lion 后,我想使用最新版本的 rvm 安装额外的 rubies。 这是我之后调用 bundler 时发生的情况: /Users
我的问题: ajax 调用的无限循环会产生问题吗? 假设有这样的代码: ajaxcall(); function ajaxcall(){ jQuery.ajax({ typ
这是一个有趣的小项目,我已经开始尝试并最大限度地提高赢得办公室曲棍球池的机会。我试图找到最好的方法来选择 20 名能够在最高工资帽内给我最多分数的球员。 例如,假设原始数据由 玩家姓名 位置(前锋,后
我有一个总数为540000的数字列表。我想将此列表分为3个列表,每个列表总共180000。最有效的编程方法是这样做,假设数字列表是一个平面文件,每个数字为线? 最佳答案 听起来像Knapsack pr
抱歉,也许因为我不是英语,我不知道,但我找不到解决几个问题的任何资源;也许我用的词不正确.. 我想了解有关 iPhone 4 和 5 不同分辨率的更多信息。 首先:如果我开发针对 iPhone 4 分
在全局配置缓存后,如 docs ,如果我在 app.module 之外使用 CacheInterceptor,它会抛出错误。 app.module.ts const cacheConfig = {
我无法让 g:each 工作。我正在尝试遍历任何内容,但它永远不起作用 = 不生成任何 html。 索引.gsp Item ${i.name} 用户 Controller .g
在我的 XAML 文件中,我有一个这样声明的 ListBox:
想知道你是否可以帮助我: 我有一个名为initializeAll的方法: public final void initializeAll() { //other stuff........ rand
我尝试过使用 XML 和 JAVA 在我的 Android Activity 中创建一个 ImageView。这两次,我都能够获取我一天前创建的所有其他 PNG 资源以显示在 ImageView 中。
我需要你的帮助。这是什么意思? Warning: mysql_query() [function.mysql-query]: Access denied for user 'ODBC'
这是一段代码 function test() { this.value = "foo"; } $(document).ready(function () { test();
这是一些非常基础的东西。渲染期间引发异常:java.util.Locale.toLanguageTag()Ljava/lang/String; XML: 问题似乎出在 Edit
除其他来源外,我还使用 Stackoverflow 上的各种帖子,尝试实现我自己的 PHP 分类器,以将推文分类为正面、中性和负面类别。在编码之前,我需要弄清楚流程。我的思路和例子如下:
在过去的几周里,每当我在 Eclipse 上使用 SVN 插件时,我都会收到以下错误: Certificate Problem There is a problem with the site's s
我被拒绝运行以下功能(位于 /var/www/mysite/public_html/app/Controllers/Script.php) $structure = '/var/www/mysite/
我正在使用 ctags 为我的 Emacs 创建标签以使用 cygwin 从中读取符号。 Emacs 说 “访问标签表缓冲区:文件/home/superman/tags 不是有效的标签表” 这是我查找
我知道作为一种函数式语言,XSL 没有像传统的 for 循环(而是 for-each)那样的东西。 我正在尝试从可变数量的元素开始创建一个具有固定数量 (7) 的表。总之,我有
我正在使用RavenDB进行一些测试,以基于iphone应用程序存储数据。该应用程序将发送一个带有GPS key 的5个GPS坐标的字符串。我在RavenDB中看到每个文档约为664-668字节。这是
我无法理解我的应用程序的行为。我想创建一个简单的窗口 (1000x700px),分为两部分(分别为 250px 和 750px 宽度)。我尝试了以下代码: import java.awt.Color;
我是一名优秀的程序员,十分优秀!