文件名称:leetcode所有报错-leetcode:leetcode
文件大小:2KB
文件格式:ZIP
更新时间:2024-07-20 16:55:11
系统开源
leetcode 所有报错 leetcode 1. Two Sum 1.指针的用法 需要通过函数改变外部非全局变量时,需要在形参里用指针声明,然后在函数内用*a=2的方式操作 2.Code::Blocks报错,leetcode服务器通过,未知原因 3.leetcode要求函数返回数组用malloc,例int* ret = malloc(sizeof(int) * 2); 2. Add Two Numbers struct复习 可以在定义结构体的同时定义结构体变量: struct stu{ char *name; //姓名 int num; //学号 int age; //年龄 char group; //所在学习小组 float score; //成绩 } stu1, stu2; 如果只需要 stu1、stu2 两个变量,后面不需要再使用结构体名定义其他变量,那么在定义时也可以不给出结构体名: struct{ //没有写 stu char *name; //姓名 int num; //学号 int age; //年龄 char group; //所在学习小组 float score;
【文件预览】:
leetcode-master
----1. Two Sum.c(763B)
----README.md(2KB)