INTEVIEW-ALGORITHEM 算法排序算法有哪些?冒泡排序、选择排序、插入排序、归并排序、快速排序、希尔排序、堆排序、计数排序、桶排序、基数排序 https://zhuanlan.zhihu.com/p/42586566 最快的排序算法是哪个?快速排序 最好情况O(nlogn) 最坏情况 O(n^2) 为什么不是堆排序 ? 在堆排序(小根堆)的时候,每次总是将最小的元素移除,然后将最后的元素放到堆顶,再让其自我调整。这样一来 2024-05-22 INTERVIEW
INTERVIEW-LIABARY https://github.com/pengMaster/BestNote/blob/master/docs/android/Android-Interview/Android/Android%E9%AB%98%E7%BA%A7%E9%9D%A2%E8%AF%9510%E5%A4%A7%E5%BC%80%E6%BA%90%E6%A1%86%E6%9E%B6%E6%BA%90%E7%A0%81%E 2024-05-22 INTERVIEW
GIT 官方文档https://git-scm.com/book/en/v2http://iissnan.com/progit/ Git基本操作github上传项目 分支创建 123git branch Dev1.10 git push origin Dev1.10 // 提交该分支到远程仓库git pull origin dev //从远程获取分支 下面是对已有项目的提交 2024-05-21 TOOL
https_ca TLSSSL Server Test (Powered by Qualys SSL Labs) https://gist.github.com/Karewan/4b0270755e7053b471fdca4419467216 Check CA1openssl x509 -in ca.crt -text -noout https://www.youtube.com/watch?v=JA0vaIb 2024-05-15 NETWORK
Cache File In Android, creating cache files and managing permissions related to file storage are common tasks, especially when you need to store temporary data. Here’s how you can handle creating cache files and 2024-05-15 ANDROID
Retrofit Retofit调用关系 illustrating interceptor request flow调用整体流程 sequenceDiagram autonumber participant SimpleService as Retrofit participant ProxyClass as BinInterface$0 participant InvocationHandler p 2024-05-14 Library
DesignPattern ResourceOverviewhttps://refactoring.guru/design-patterns/abstract-factoryhttps://design-patterns.readthedocs.io/zh-cn/latest/behavioral_patterns/behavioral.html https://blog.csdn.net/unique_perfect/ar 2024-05-14 DesignPattern
WordPress Install guidehttps://www.linuxtuto.com/how-to-install-wordpress-on-debian-12/ Try not to create a /etc/nginx/conf.d/wordpress.conf file; instead, make the necessary configurations 2024-05-12 TOOL