- Delete d node at nth position【1月17日学习笔记】
点击查看代码//Deletednodeatnthposition#include<iostream>usingnamespacestd;structnode{ intdata; node*next;};node*A;voidinsert(intx){ node*temp=newnode; temp->data=x; temp->next=NULL; if(A==NULL){ A=temp;......
- 【Tools】Eclipse MemoryAnalyzer(MAT)工具使用笔记
目录一、前言1.1简介1.2下载安装二、使用2.1Histogram(直方图)2.2DominatorTree(支配树)2.3TopConsumers2.4DuplicateClasses(重复类)2.5Suspects(疑似泄露点)三、问题总结3.1分析源码3.2解决办法一、前言1.1简介EclipseMemoryAnalyzer是一个快速且功能丰富的Java堆分......
- Inserting a node at nth position【1月17日学习笔记】
点击查看代码//Insertinganodeatnthposition#include<iostream>usingnamespacestd;structnode{intdata;node*next;};node*A;//全局头指针voidinsert(intx,intn){node*temp=newnode;//temp是局部变量,在stack区,每次调用更新temp-......
- TS学习笔记四:函数及泛型枚举
本节介绍ts的函数及泛型的相关内容,包括函数的声明格式及泛型的相关知识。B站视频https://player.bilibili.com/player.html?aid=495956203西瓜视频https://www.ixigua.com/7321535978286514727一、函数 函数是js程序的基础,可以实现抽象层/模拟类/信息隐藏和模块......
- 【240117-1】如图,A和B为两正方形,两者共一顶角。求证:顶角两侧三角线面积相等。
......
- 数学分析学习笔记
title:数学分析笔记date:2023-09-1817:15:46tags:notesmathjax:truedescription:数学分析,真难啊~数学分析笔记实数与序列常见数集下面给出一些集合的定义\[\begin{aligned}\mathbbN&=\{0,1,2,\ldots\}\\\mathbbZ&=\{\ldots,-1,0,1,\ldots\}\\\mathbb......
- Inserting a node at beginning,全局变量头指针【1月16日学习笔记】
点击查看代码//insertinganodeatbeginning,全局变量头指针#include<iostream>usingnamespacestd;structnode{ intdata; node*next;};node*A;voidinsert(intx){ node*temp=newnode;//创建新节点 temp->data=x; temp->next=A;//新节点尾巴指......
- Inserting a node at beginning,局部变量头指针版本1【1月16日学习笔记】
点击查看代码//insertinganodeatbeginning,局部变量头指针版本1#include<iostream>usingnamespacestd;structnode{ intdata; node*next;};node*insert(intx,node*A){ node*temp=newnode;//创建新节点 temp->data=x; temp->next=A;//新节......
- Inserting a node at beginning,局部变量头指针版本2【1月16日学习笔记】
点击查看代码//insertinganodeatbeginning,局部变量头指针版本2#include<iostream>usingnamespacestd;structnode{ intdata; node*next;};voidinsert(intx,node**A){ node*temp=newnode;//创建新节点 temp->data=x; temp->next=*A;//新......
- 遍历链表,将节点接到末端 【1月16日学习笔记】
点击查看代码//遍历链表,将节点接到末端#include<iostream>usingnamespacestd;structnode{ intdata;//数据 node*next;//尾巴};//定义节点结构体node*A;//头指针固定,globalvariabl......