Michael99q
Michael99q
全部文章
分类
归档
标签
去牛客网
登录
/
注册
Michael99q的博客
全部文章
(共2篇)
题解 | 输出单向链表中倒数第k个结点
#include <stdio.h> #include <string.h> #include <stdlib.h> struct node { int data; struct node* next; }; int main() { i...
2025-03-07
0
152
题解 | #求int型正整数在内存中存储时1的个数#
#include <stdio.h> //输入一个int型的正整数,计算该int型数据在内从中存贮时1的个数; int main() { int a=0; int count=0; scanf("%d",&a); do{ ...
2024-12-12
0
158