题解列表
【C语言题解】编写题解 1692: 数据结构-稀疏矩阵转置
摘要:```c
#include
#include
//定义一个结构体,存储数字的,值,行,列
typedef struct Link {
int data;
int han……
C语言代码,背包问题
摘要:#include<stdio.h>#include<stdlib.h> typedef struct Holl{ int time; int value;}Holl; Holl* holl……
编写题解 1670: 拆分位数
摘要:number = input()number = number[::-1]for i in range(len(number)): print(number[i],end=' '……