黑客入门系列三 内存泄漏检测工具完结篇 摘要:前言: 本篇是上篇 黑客入门系列二 内存泄漏检测工具的完结篇,主要使用python和shell脚本做了二次封装第一步 测试代码:#include <stdio.h> #include <stdl…… 文章列表 2021年10月14日 0 点赞 0 评论 291 浏览 评分:0.0
bak bin 二进制 摘要:int dec2bin(int num, int save[]) { int i = 0, k = 0; if (num == 0) {   文章列表 2021年10月14日 0 点赞 0 评论 300 浏览 评分:0.0
倒置单链表——c语言 摘要:```c void ListReverse(SqList*L) { SqList *p,*q,*r; p=L->next;q=p->next;r=q->next; w…… 文章列表 2021年10月16日 0 点赞 0 评论 291 浏览 评分:0.0
刷题——统计所有前缀对应的单词数量 摘要:题目: 输入一串以空格为分隔符的单词,请输出所有前缀对应的单词数量 如输入: flip fly butter battery 输出: {'f': 2, 'fl': 2, 'fli': 1, …… 文章列表 2021年10月16日 0 点赞 0 评论 319 浏览 评分:0.0
数二叉树节点的个数 摘要:```c int p(struct TreeNode*root) { if(root==NULL) return 0; int res=0; if(…… 文章列表 2021年10月17日 0 点赞 0 评论 192 浏览 评分:0.0
数二叉树节点的个数(精简版) 摘要:```c int countNodes(struct TreeNode* root){ if(root==NULL) return 0; return coun…… 文章列表 2021年10月17日 0 点赞 0 评论 202 浏览 评分:0.0
牛客竞赛题目——python 摘要:完全平方数 比赛主页 我的提交 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 131072K,其他语言262144K 64bit IO Format: %ll…… 文章列表 2021年10月22日 0 点赞 0 评论 316 浏览 评分:0.0
字符串读取 摘要:#include<stdio.h>int main(){ char a[100]; int i=0,j=0,d=1; scanf("%c",&a[i]); i=1; while(d){ sca…… 文章列表 2021年10月23日 0 点赞 0 评论 185 浏览 评分:0.0
Sn公式求和;;;;; 摘要:#include<stdio.h>int main(){ int a=2,n=0,i=0,j=0,s=0,m=1; scanf("%d",&n); for(i=0;i<n;i++){ f…… 文章列表 2021年10月23日 0 点赞 0 评论 270 浏览 评分:0.0