题解列表
C语言递归哦!(看到好多递归给的都是c++或其他语言)
摘要: #include
void An(int i,int n)
{
if(i==n)
printf("sin(%d)",n);
……
1676: 数据结构-链表的基本操作
摘要:说实话,用cin和cout输入输出实在是太慢了,所以我用scanf和printf进行输入输出。
```cpp
#include
#include
using namespace std;
t……
1677: 数据结构-静态链表
摘要:```cpp
#include
#include
using namespace std;
struct ListNode
{
string elem;
int next……
1678: 数据结构-双向循环链表
摘要:```cpp
#include
using namespace std;
typedef int Status,ElemType;
typedef struct DuLNode
{
……
1245: 神奇的fans
摘要:```cpp
#include
using namespace std;
int main()
{
int cmp(const void *a,const void *b),i,n,……
1238: 演讲大赛评分
摘要:```cpp
#include
#include
#include
using namespace std;
int main()
{
float a[7],b,c,d,e,f,……
1239: 班级人数
摘要:```cpp
#include
using namespace std;
float least_stu(float a,float b)
{
int N=1;
bool ……
结构体之成绩记录(简单易懂)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct student { char num[10]; char name[20]; int a; i……