- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在使用链表实现队列。需要使用命令 gcc -std=c89 -g –pedantic filename.c 在 omega 上编译代码而不发出警告。但是,我收到警告:行号(174、223、253)上的不兼容指针类型赋值 [默认启用]。另外,我在将记录打印到文件时遇到问题:
#include <stdio.h>
#include <errno.h>
#include <stdbool.h>
#include <stdlib.h>
#include <string.h>
struct student_record
{
int student_id_;
int student_age_;
char first_name_[21];
char last_name_[21];
};
struct student_record_node
{
struct student_record* record_;
struct student_record_node* next_;
}*front,*rear,*temp,*front1;
void enq(struct student_record* sr);
void parseFile(char* filename, struct student_record_node** head);
void printNode(struct student_record_node* node);
struct student_record_node* student_record_allocate();
void student_record_node_deallocate(struct student_record_node* node);
void sortByAge(struct student_record_node** recordsHead);
void sortById(struct student_record_node** front);
void swap(struct student_record_node** node1, struct student_record_node** node2);
int main ( int argc, char *argv[] )
{
char *filename = argv[1];
int i;
/**for(i=0;i<argc;i++)**/
/** printf("%d %s ",i,argv[i]);**/
/**printf( "usage: %s filename", argv[1] );**/
parseFile(filename,&front);
printNode(front);
printf("\n");
printf("Sorting by age \n");
sortByAge(&front);
printNode(front);
printf("Sorting by id \n");
sortById(&front);
printNode(front);
/**student_record_node_deallocate(front);**/
getch();
return 0;
}
void swap(struct student_record_node** node1, struct student_record_node** node2)
{
struct student_record *s1;
struct student_record_node *t1 = *node1,*t2=*node2;
/**s1=(struct node *)malloc(1*sizeof(struct student_record));**/
s1= t1 -> record_;
t1->record_= t2->record_;
t2->record_=s1;
}
void sortByAge(struct student_record_node** front)
{
int swapped, i;
struct student_record_node *ptr1;
struct student_record_node *lptr = NULL;
struct student_record *s1,*s2;
/**Checking for empty list**/
if (ptr1 == NULL)
return;
do
{
swapped = 0;
ptr1 = *front;
while (ptr1->next_ != lptr)
{
s1=ptr1->record_;
s2=ptr1->next_->record_;
if (s1->student_age_ > s2->student_age_)
{
swap(&ptr1, &ptr1->next_);
swapped = 1;
}
ptr1 = ptr1->next_;
}
lptr = ptr1;
}
while (swapped);
}
void sortById(struct student_record_node** front)
{
int swapped, i;
struct student_record_node *ptr1;
struct student_record_node *lptr = NULL;
struct student_record *s1,*s2;
/**Checking for empty list**/
if (ptr1 == NULL)
return;
do
{
swapped = 0;
ptr1 = *front;
while (ptr1->next_ != lptr)
{
s1=ptr1->record_;
s2=ptr1->next_->record_;
if (s1->student_id_ > s2->student_id_)
{
swap(&ptr1, &ptr1->next_);
swapped = 1;
}
ptr1 = ptr1->next_;
}
lptr = ptr1;
}
while (swapped);
}
void student_record_node_deallocate(struct student_record_node* node)
{
front1 = node;
struct student_record_node* temp;
if ((front1 == NULL) && (rear == NULL))
{
printf("Queue is empty");
return;
}
while (front1 != rear)
{
temp =front1;
front1 = front1->next_;
free(temp);
}
if (front1 == rear)
{
free(front1);
}
free(node);
free(temp);
}
struct student_record_node* student_record_allocate()
{
struct student_record_node* sr;
sr = (struct node *)malloc(1*sizeof(struct student_record_node));
return sr;
}
void printNode(struct student_record_node* node)
{
front1 = front;
struct student_record* s;
if ((front1 == NULL) && (rear == NULL))
{
printf("Queue is empty");
return;
}
while (front1 != rear)
{
s=front1->record_;
printf("struct student_record_node\n");
printf("\tstudent firstname %s\n", s->first_name_);
printf("\tstudent lastname %s\n", s->last_name_);
printf("\tstudent id %d\n", s->student_id_);
printf("\tstudent age %d\n\n", s->student_age_);
front1 = front1->next_;
}
if (front1 == rear)
{
s=front1->record_;
printf("struct student_record_node\n");
printf("\tstudent firstname %s\n", s->first_name_);
printf("\tstudent lastname %s\n", s->last_name_);
printf("\tstudent id %d\n", s->student_id_);
printf("\tstudent age %d\n\n", s->student_age_);
}
}
void enq(struct student_record* sr)
{
if (rear == NULL)
{
rear = student_record_allocate();//(struct node *)malloc(1*sizeof(struct student_record_node));
rear->record_ = sr;
rear->next_ = NULL;
front = rear;
}
else
{
temp=(struct node *)malloc(1*sizeof(struct student_record_node));
rear->next_ = temp;
temp->record_ = sr;
temp->next_ = NULL;
rear = temp;
}
}
void parseFile(char* filename, struct student_record_node** head)
{
struct student_record * sr;
char item[21], status[21];
int id,age;
FILE *fp;
if((fp = fopen(filename, "r+")) == NULL) {
printf("No such file\n");
exit(1);
}
while (true) {
int ret = fscanf(fp, "%s %s %d %d", item, status, &id, &age);
if(ret == 4)
{
/**printf("\n%s \t %s %d %d", item, status, id, age);**/
sr = (struct node *)malloc(1*sizeof(struct student_record));
strncpy(sr->first_name_, item, 21);
/**sr->first_name_ = item;**/
strncpy(sr->last_name_,status,21);
/**sr->last_name_ = status;**/
sr->student_id_=id;
sr->student_age_=age;
enq(sr);
}
else if(errno != 0) {
perror("scanf:");
break;
} else if(ret == EOF) {
break;
} else {
printf("No match.\n");
}
}
printf("\n");
/*if(feof(fp)) {
puts("EOF");
}*/
}
输入文件是:
Joe Smith 00001 24
Bob Smith 00002 31
Samantha Smith 00003 30
Christina Smith 00004 17
Steven Smith 00005 20
Jason Smith 00006 3
Patrick Smith 00007 50
Alex Smith 00001 29
最佳答案
它是 (mmm...) 因为您正在分配一个不兼容的指针类型。
struct student_record_node* sr;
sr = (struct node *)malloc(1*sizeof(struct student_record_node));
在这里,您将 malloc
的返回值强制转换为“指向结构节点的指针”,然后将其分配给“指向 struct student_record_node 的指针”。
其实 Actor 阵容很烂。扔掉它。 malloc
的返回值为void*
,与其他任何指针兼容。此外,您可以使用位置作为 sizeof
的参数,这具有优势。 1*
只是困惑。所以你剩下:
struct student_record_node *sr = malloc(sizeof *sr);
然后错误就会消失。
然后检查 NULL 返回值。即使这是一个玩具,也要早点养成真正程序员的习惯。
此外,学习 c89
语法也不是最好的主意,尤其是作为新程序员。在非平凡的情况下,它实际上需要糟糕的风格。为什么您认为 gcc
需要一个标志来强制执行它?我知道这可能超出了您的控制范围,但我会向老师提出。
“面对问题”不是问题。如果您寻求具体帮助,通常会在此处获得帮助。
关于c - 警告 : assignment from incompatible pointer type when compiling using gcc -std=c89 -g –pedantic filename. c,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34057905/
我正在开发一个小型图书馆,我需要做的一件事是让访问者访问一些数据并返回结果。 在一些较旧的 C++ 代码中,访问者需要声明一个 typedef return_type .例如,boost::stati
我正在尝试使用std:map类型的键和值制作std::any Visual Studio 2017 std::map m("lastname", "Ivanov"); std::cout (m["la
我已经在 C++ 的 map 中声明了一个集合为 std::map> .如何循环访问或打印设定值? 最佳答案 如果你知道如何迭代 std::map或 std::set单独地,您应该可以毫无问题地组合迭
如何循环? 我已经试过了: //----- code std::vector >::iterator it; for ( it = users.begin(); it != users.end();
我有两个用例。 A.我想同步访问两个线程的队列。 B.我想同步两个线程对队列的访问并使用条件变量,因为其中一个线程将等待另一个线程将内容存储到队列中。 对于用例 A,我看到了使用 std::lock_
我正在查看这两种类型特征的文档,但不确定有什么区别。我不是语言律师,但据我所知,它们都适用于“memcpy-able”类型。 它们可以互换使用吗? 最佳答案 不,这些术语不能互换使用。这两个术语都表示
我有以下测试代码,其中有一个参数 fS,它是 ofstream 的容器: #include #include #include #include int
这是这个问题的延续 c++ function ptr in unorderer_map, compile time error 我试图使用 std::function 而不是函数指针,并且只有当函数是
std::unordered_map str_bool_map = { {"a", true}, {"b", false}, {"c", true} }; 我们可以在此映射上使
我有以下对象 std::vector> vectorList; 然后我添加到这个使用 std::vector vec_tmp; vec_tmp.push_back(strDRG); vec_tmp.p
为什么 std::initializer_list不支持std::get<> , std::tuple_size和 std::tuple_element ?在constexpr中用得很多现在的表达式,
我有一个像这样定义的变量 auto drum = std::make_tuple ( std::make_tuple ( 0.3f , Ex
假设我有一个私有(private)std::map在我的类(class)里std::map 。我怎样才能将其转换为std::map返回给用户?我想要下面的原型(prototype) const std
假设我有一个私有(private)std::map在我的类(class)里std::map 。我怎样才能将其转换为std::map返回给用户?我想要下面的原型(prototype) const std
问题 我正在尝试将 lambda 闭包传递给 std::thread,它使用任意封闭参数调用任意封闭函数。 template std::thread timed_thread(Function&& f
我想创建一个模板类,可以容纳容器和容器的任意组合。例如,std::vector或 std::map ,例如。 我尝试了很多组合,但我必须承认模板的复杂性让我不知所措。我编译的关闭是这样的: templ
我有一个 std::vector>我将其分配给相同类型的第二个 vector 。 我收到这个编译器错误: /opt/gcc-8.2.0/include/c++/8.2.0/bits/stl_algob
有时候,我们有一个工厂可以生成一个 std::unique_ptr vector ,后来我们想在类/线程/你命名的之间共享这些指针。因此,最好改用 std::shared_ptr 。当然有一种方法可以
这个问题在这里已经有了答案: Sorting a vector of custom objects (14 个答案) 关闭 6 年前。 我创建了一个 vector vector ,我想根据我定义的参
我有三个类(class)成员: public: std::vector > getObjects(); std::vector > getObjects() const; privat
我是一名优秀的程序员,十分优秀!