ICode9

精准搜索请尝试: 精确搜索
  • 2021东华杯2021-12-08 15:02:01

    2021东华杯 和华为119冲突了,做119去了。这里复盘一下。 参考链接 [[2021 东华杯 个人 WriteUp-魔法少女雪殇 (snowywar.top) MISC check_in utf-7编码。理论上base64也可以解出来。 where_can_find_code 解压缩之后,发现一个code.asc文件。用Notepad++打开,看到前面的语句有

  • 数据结构-线性表自然连接-应用实验2021-10-18 11:32:05

    #define MAXCOL 10 #include<stdio.h> #include<malloc.h> #include<stdlib.h> typedef struct Node1{ int data[MAXCOL]; struct Node1 *next; }Dlist; typedef struct Node2{ int Row , Col; Dlist *next; }Hlist; //创建节点链表 void createNode(Hli

  • win10uwp解决SerialDevice.FromIdAsync返回空2021-06-28 14:07:49

    title author date CreateTime categories win10 uwp 解决 SerialDevice.FromIdAsync 返回空 lindexi 2019-6-23 11:54:4 +0800 2019-02-14 21:33:17 +0800 Win10 UWP 调用 SerialDevice.FromIdAsync 可能返回空,因为没有设置 package.appmanifest 可以使用端口 打开 pa

  • 数据结构双链表之(一)初始化&&尾插&&显示表2021-05-15 19:33:15

    文章目录 1. 思路1.1 初始化1.2 尾插1.3 显示表 2. 代码2.1 DList.h2.2 DList.cpp2.3 main.cpp 3. 结果总结 1. 思路 1.1 初始化 与单链表的区别在于:双链表节点中有一个前向节点。 1.2 尾插 1.3 显示表 2. 代码 2.1 DList.h #ifndef _DList_H_ #define _DList_H_ #in

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有