摘要: https://leetcode.cn/problems/merge-two-sorted-lists /** * Definition for singly-linked list. * struct ListNode { * int val; * struct ListNode *next; * 阅读全文
posted @ 2026-01-10 20:59 沫忆拾忆 阅读(4) 评论(0) 推荐(0)
摘要: Q200.(语言: C)按如下函数原型,用二维数组作为函数参数,编程计算并输出n×n阶矩阵的转置矩阵。 其中,n由用户从键盘输入。已知n值不超过10。 void Transpose(int a[][N], int n); void InputMatrix(int a[][N], int n); vo 阅读全文
posted @ 2026-01-10 19:50 沫忆拾忆 阅读(4) 评论(0) 推荐(0)