-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Homework1 线性表 Homework2 作业13题链表的拆分 Homework3 链栈的三个相关应用 #23
Conversation
head->next = NULL; | ||
present = head; | ||
next = NULL; | ||
for (int i = 0;i < n;i++) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
仅接受C语言版的代码实现,不接受C++代码
建议使用后缀名.c
去调试无误后再行提交
2017-1/Jasmine/exp01/Homework.cpp
Outdated
List *head1, *head2, *head3; | ||
int len1, len2, len3; | ||
printf("�������Ա�LA���ȣ�"); | ||
scanf("%d", &len1); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- 请使用随机函数生成链表测试数据,不要人工输入
2017-1/Jasmine/exp02/作业说明.txt
Outdated
@@ -0,0 +1,19 @@ | |||
��һ�� ����ת�� |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- 这里的文件显示是乱码,要转为utf-8编码后再上传。解决乱码
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
第一次和第二次作业基本完成
助教已经完成批注的前2次作业PR,在我没有合并之前,你不应该再把第三次作业又追加到当前的这个PR,这会影响第3次作业的及时合并 |
2017-1/Jasmine/exp03/3-2-5表达式求值.cpp
Outdated
struct StackFloat *next; | ||
}SF; //StackFloat���͵Ľ��SF | ||
|
||
SC *Push(SC *s, char c) //SC���͵�ָ��Push������p |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- 我们的作业要求C语言编写
- 你这里的
Push函数,Pop函数
使用到了C++中的函数重载,C语言中是不支持函数重载的!
- 你这里的
- 建议修改后缀名为.c进行调试运行
2017-1/Jasmine/exp03/3-2-5表达式求值.c
Outdated
printf("�ñ��ʽ��ֵΪ:"); | ||
printf("%s\b=%g\n", s, EvaluateExpression(s)); | ||
return 0; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
第三次作业基本完成!
No description provided.