题解列表

筛选

蛇行矩阵 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std; int main() { int num; int a[102]; cin>>num;  ……

DNA (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;/* run this program using the console pauser o……
优质题解

Manchester- 数据结构-双向循环链表

摘要:解题思路:①:定义结点,在单链表结点的基础上,多一个指向前驱的指针typedef struct Node_{ int element; struct Node_* prior; struct……