常梦网 Tag标签 [null]如下:
当前位置:网站首页>-
LinkedList 链表总结 - Ryan的修炼之路
2024-07-23leetcode好久不刷了,今天按照类型来刷linkedlist一类的,总结一下.
-
LeetCode题解:Add Two Numbers
2024-07-22LeetCode题解说明:本人不是什么算法高手,部分内容参考了Google、stackoverflow、segmentfault中得到的一些解答或者代码。之所以去做Leetcode上的题是因为毕业工作后对算法有了新的认知。
-
jsPlumb(2)-配置
2024-07-13感受jsPlumb最容易最直观是重写jsPlumb的默认配置。如果你没这么做,你不得不每次调用都得重写这些值。connect和addEndpoint的每个参数都和jsPlumb的默认值有关。
-
Java Bean 映射框架 Orika
2024-06-29Orika是一个JavaBean映射框架。
-
JavaScript数据类型的一些注意要点
2024-06-24ECMAscript中有5种简单的数据类型,也被称为基本数据类型:Undefined、Null、Boolean、Number和String。还有一种复杂的数据类型——Object。
-
Java LinkedList源码分析 - Coding
2024-06-12简介LinkedList是一个常用的集合类,用于顺序存储元素。LinkedList经常和ArrayList一起被提及。
-
Future 模式
2024-05-14future模式:一种异步计算模式,并支持返回计算结果,在调用get()获取到计算结果前可以阻塞调用者线程
-
相当于一次先序遍历,将先访问的点存储在数组里,下一个访问的节点为之前访问的点的右子树
-
Win32api设置窗口全屏的方法
2024-04-27首先是考虑全屏处理的时机,是在创建窗口时还是显示窗口时进行,若是前者,则可以:
-
ContentObserver类的使用
2024-04-11applicationA提供了provider,applicationB可以使用.
-
C/C++在内存分配和释放时,小心野指针
2024-03-29在C/C++中进行内存分配之后,如果在使用过之后释放了内存,一定要注意将指针置为NULL,否则指针将变成野指针。
-
Binary Tree Paths - Ryan的修炼之路
2024-03-27Givenabinarytree,returnallroot-to-leafpaths.
-
基本信息作者:项目:类加载器ClassLoader早期使用过Eclipse等Java编写的软件的同学可能比较熟悉,Eclipse可以加载许多第三方的插件,这其实就是动态加载。
-
Android4.4以上系统根据Uri正确获取文件路径的方法
2024-03-17publicstaticStringgetPhotoPathFromContentUri(Contextcontext,Uriuri){StringphotoPath="";if(context==null||uri==null){returnphotoPath;}if(Build.VERSION.SDK_INT>=Build.VERSION_CODES.
-
Android Volley库源码简析(Image Request部分)
2024-03-17本文仅对Volley中关于ImageRequest部分的一些简单用例做解析,HttpRequest部分请参考这里:
-
ManifestPermission:
-
Andriod开发中,有哪些需要注意的坑? - testbird
2024-03-161:AndoridLthemecolorPrimary不能使用带有alpha的颜色值,否则会有异常抛出,直接判断了是否alpha是否等于0或者255,其他都会异常。
-
Add Two Numbers - 每日算法
2024-03-14Difficulty:Medium
-
第一学历是什么?很多人都错了!
2024-02-14“第一学历”这个不太陌生的词,在就业或者升迁时也是一道至关重要的门槛。
-
Checkiftwobinarytreesareidentical.Identicalmeansthetwobinarytreeshavethesamestructureandeveryidenticalpositionhasthesamevalue.
-
[LintCode] Binary Tree Paths - Road to Glory
2024-02-09Givenabinarytree,returnallroot-to-leafpaths.
-
SerializeandDeserializeBinaryTreeSerializationistheprocessofconvertingadatastructureorobjectintoasequenceofbitssothatitcanbestoredinafileormemorybuffer,ortransmittedacrossanetworkconnectionlinktoberec
-
Givenabinarytree,determineifitisavalidbinarysearchtree(BST).
-
[Leetcode] Sum Root to Leaf Numbers 累加叶子节点
2024-02-02Givenabinarytreecontainingdigitsfrom0-9only,eachroot-to-leafpathcouldrepresentanumber.Anexampleistheroot-to-leafpath1-2-3whichrepresentsthenumber123.Findthetotalsumofallroot-to-leafnumbers.
-
[Leetcode] Same Tree Symmetric Tree 相同树 对称树
2024-01-31Giventwobinarytrees,writeafunctiontocheckiftheyareequalornot.
-
[Leetcode] Reverse Linked List 反转链表
2024-01-30Reverseasinglylinkedlist.
-
[Leetcode] Reorder List 链表重新排序
2024-01-29GivenasinglylinkedlistL:L0→L1→…→Ln-1→Ln,reorderitto:L0→Ln→L1→Ln-1→L2→Ln-2→…
-
Givenabinarytree
-
[Leetcode] Path Sum 路径和
2024-01-28Givenabinarytreeandasum,determineifthetreehasaroot-to-leafpathsuchthataddingupallthevaluesalongthepathequalsthegivensum.
-
[Leetcode] Palindrome Linked List 回文链表
2024-01-27Givenasinglylinkedlist,determineifitisapalindrome.