<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/" version="2.0"><channel><title>WenjingsBlog</title><link>https://blog.211699.xyz</link><atom:link href="https://blog.211699.xyz/rss.xml" rel="self" type="application/rss+xml"/><description>BlogsWenjing</description><generator>Halo v2.24.2</generator><language>zh-cn</language><image><url>https://blog.211699.xyz/upload/14071268056016105855_1.jpg</url><title>WenjingsBlog</title><link>https://blog.211699.xyz</link></image><lastBuildDate>Tue, 26 May 2026 17:16:10 GMT</lastBuildDate><item><title><![CDATA[tree]]></title><link>https://blog.211699.xyz/archives/tree</link><description><![CDATA[<img src="https://blog.211699.xyz/plugins/feed/assets/telemetry.gif?title=tree&amp;url=/archives/tree" width="1" height="1" alt="" style="opacity:0;">面试官：说说你对树的理解？相关的操作有哪些？ 一、是什么 在计算机领域，树形数据结构是一类重要的非线性数据结构，可以表示数据之间一对多的关系。以树与二叉树最为常用，直观看来，树是以分支关系定义的层次结构]]></description><guid isPermaLink="false">/archives/tree</guid><dc:creator>Administrator</dc:creator><pubDate>Sat, 23 May 2026 16:28:10 GMT</pubDate></item><item><title><![CDATA[time_space]]></title><link>https://blog.211699.xyz/archives/time_space</link><description><![CDATA[<img src="https://blog.211699.xyz/plugins/feed/assets/telemetry.gif?title=time_space&amp;url=/archives/time_space" width="1" height="1" alt="" style="opacity:0;">面试官：说说你对算法中时间复杂度，空间复杂度的理解？如何计算？ 一、前言&lt;]]></description><guid isPermaLink="false">/archives/time_space</guid><dc:creator>Administrator</dc:creator><pubDate>Sat, 23 May 2026 16:28:10 GMT</pubDate></item><item><title><![CDATA[stack_queue]]></title><link>https://blog.211699.xyz/archives/stack_queue</link><description><![CDATA[<img src="https://blog.211699.xyz/plugins/feed/assets/telemetry.gif?title=stack_queue&amp;url=/archives/stack_queue" width="1" height="1" alt="" style="opacity:0;">面试官：说说你对栈、队列的理解？应用场景？ 一、栈 栈（stack）又名堆栈，它是一种运算受限的线性表，限定仅在表尾进行插入和删除操作的线性表 表尾这一端被称为栈顶，相反地另一端被称为栈底，向栈顶插入元素被称为进栈、入栈、压栈，从栈顶删除元素]]></description><guid isPermaLink="false">/archives/stack_queue</guid><dc:creator>Administrator</dc:creator><pubDate>Sat, 23 May 2026 16:28:10 GMT</pubDate></item><item><title><![CDATA[sort]]></title><link>https://blog.211699.xyz/archives/sort</link><description><![CDATA[<img src="https://blog.211699.xyz/plugins/feed/assets/telemetry.gif?title=sort&amp;url=/archives/sort" width="1" height="1" alt="" style="opacity:0;">面试官：说说常见的排序算法有哪些？区别？ 一、是什么 排序是程序开发中非常常见的操作，对一组任意的数据元素经过排序操作后，就可以把他们变成一组一定规则排序的有序序列 排序算法属于算法中的一种，而且是覆盖范围极小的一种，彻底掌]]></description><guid isPermaLink="false">/archives/sort</guid><dc:creator>Administrator</dc:creator><pubDate>Sat, 23 May 2026 16:28:10 GMT</pubDate></item><item><title><![CDATA[set]]></title><link>https://blog.211699.xyz/archives/set</link><description><![CDATA[<img src="https://blog.211699.xyz/plugins/feed/assets/telemetry.gif?title=set&amp;url=/archives/set" width="1" height="1" alt="" style="opacity:0;">面试官：说说你对集合的理解？常见的操作有哪些？ 一、是什么 集合（Set），指具有某种特定性质的事物的总体，里面的每一项内容称作元素 在数学中，我们经常会遇到集合的概念：]]></description><guid isPermaLink="false">/archives/set</guid><dc:creator>Administrator</dc:creator><pubDate>Sat, 23 May 2026 16:28:09 GMT</pubDate></item><item><title><![CDATA[selectionSort]]></title><link>https://blog.211699.xyz/archives/selectionsort</link><description><![CDATA[<img src="https://blog.211699.xyz/plugins/feed/assets/telemetry.gif?title=selectionSort&amp;url=/archives/selectionsort" width="1" height="1" alt="" style="opacity:0;">面试官：说说你对选择排序的理解？如何实现？应用场景？ 一、是什么 选择排序（Selection sort）是一种简单直观的排序算法]]></description><guid isPermaLink="false">/archives/selectionsort</guid><dc:creator>Administrator</dc:creator><pubDate>Sat, 23 May 2026 16:28:09 GMT</pubDate></item><item><title><![CDATA[quickSort]]></title><link>https://blog.211699.xyz/archives/quicksort</link><description><![CDATA[<img src="https://blog.211699.xyz/plugins/feed/assets/telemetry.gif?title=quickSort&amp;url=/archives/quicksort" width="1" height="1" alt="" style="opacity:0;">面试官：说说你对快速排序的理解？如何实现？应用场景？ 一、是什么 快速排序（Quick Sort）算法是在冒泡排序的基础上进行改进]]></description><guid isPermaLink="false">/archives/quicksort</guid><dc:creator>Administrator</dc:creator><pubDate>Sat, 23 May 2026 16:28:09 GMT</pubDate></item><item><title><![CDATA[mergeSort]]></title><link>https://blog.211699.xyz/archives/mergesort</link><description><![CDATA[<img src="https://blog.211699.xyz/plugins/feed/assets/telemetry.gif?title=mergeSort&amp;url=/archives/mergesort" width="1" height="1" alt="" style="opacity:0;">面试官：说说你对归并排序的理解？如何实现？应用场景？ 一、是什么 归并排序（Merge Sort）是建立归并操作上的一种有效，稳定]]></description><guid isPermaLink="false">/archives/mergesort</guid><dc:creator>Administrator</dc:creator><pubDate>Sat, 23 May 2026 16:28:09 GMT</pubDate></item><item><title><![CDATA[Linked List]]></title><link>https://blog.211699.xyz/archives/linked-list</link><description><![CDATA[<img src="https://blog.211699.xyz/plugins/feed/assets/telemetry.gif?title=Linked%20List&amp;url=/archives/linked-list" width="1" height="1" alt="" style="opacity:0;">面试官：说说你对链表的理解？常见的操作有哪些？ 一、是什么 链表（Linked List）是一种物理存储单元上非连续、非顺序的存储结构，数据元素的逻辑顺序是通过链表中的指针链接次序实现]]></description><guid isPermaLink="false">/archives/linked-list</guid><dc:creator>Administrator</dc:creator><pubDate>Sat, 23 May 2026 16:28:09 GMT</pubDate></item><item><title><![CDATA[insertionSort]]></title><link>https://blog.211699.xyz/archives/insertionsort</link><description><![CDATA[<img src="https://blog.211699.xyz/plugins/feed/assets/telemetry.gif?title=insertionSort&amp;url=/archives/insertionsort" width="1" height="1" alt="" style="opacity:0;">面试官：说说你对插入排序的理解？如何实现？应用场景？ 一、是什么 插入排序（Insertion Sort），一般也被称为直接插入排]]></description><guid isPermaLink="false">/archives/insertionsort</guid><dc:creator>Administrator</dc:creator><pubDate>Sat, 23 May 2026 16:28:08 GMT</pubDate></item><item><title><![CDATA[Heap]]></title><link>https://blog.211699.xyz/archives/heap</link><description><![CDATA[<img src="https://blog.211699.xyz/plugins/feed/assets/telemetry.gif?title=Heap&amp;url=/archives/heap" width="1" height="1" alt="" style="opacity:0;">面试官：说说你对堆的理解？如何实现？应用场景？ 一、是什么 堆(Heap)是计算机科学中一类特殊的数据结构的统称 堆通常是一个可以被看做一棵完全二叉树的数组对象，如下图：]]></description><guid isPermaLink="false">/archives/heap</guid><dc:creator>Administrator</dc:creator><pubDate>Sat, 23 May 2026 16:28:08 GMT</pubDate></item><item><title><![CDATA[graph]]></title><link>https://blog.211699.xyz/archives/graph</link><description><![CDATA[<img src="https://blog.211699.xyz/plugins/feed/assets/telemetry.gif?title=graph&amp;url=/archives/graph" width="1" height="1" alt="" style="opacity:0;">面试官：说说你对图的理解？相关操作有哪些？ 一、是什么 在计算机科学中，图是一种抽象的数据类型，在图中的数据元素通常称为结点，V是所有顶点的集合，E是所有边的集合]]></description><guid isPermaLink="false">/archives/graph</guid><dc:creator>Administrator</dc:creator><pubDate>Sat, 23 May 2026 16:28:08 GMT</pubDate></item><item><title><![CDATA[design2]]></title><link>https://blog.211699.xyz/archives/design2</link><description><![CDATA[<img src="https://blog.211699.xyz/plugins/feed/assets/telemetry.gif?title=design2&amp;url=/archives/design2" width="1" height="1" alt="" style="opacity:0;">面试官：说说你对贪心算法、回溯算法的理解？应用场景？ 一、贪心算法 贪心算法，又称贪婪算法，是算法设计中的一种思]]></description><guid isPermaLink="false">/archives/design2</guid><dc:creator>Administrator</dc:creator><pubDate>Sat, 23 May 2026 16:28:07 GMT</pubDate></item><item><title><![CDATA[design1]]></title><link>https://blog.211699.xyz/archives/design1</link><description><![CDATA[<img src="https://blog.211699.xyz/plugins/feed/assets/telemetry.gif?title=design1&amp;url=/archives/design1" width="1" height="1" alt="" style="opacity:0;">面试官：说说你对分而治之、动态规划的理解？区别？ 一、分而治之 分而治之是算法设计中的一种方法，就是把一个复杂的问题分成两个或更多的相同或相似的子问]]></description><guid isPermaLink="false">/archives/design1</guid><dc:creator>Administrator</dc:creator><pubDate>Sat, 23 May 2026 16:28:07 GMT</pubDate></item><item><title><![CDATA[bubbleSort]]></title><link>https://blog.211699.xyz/archives/bubblesort</link><description><![CDATA[<img src="https://blog.211699.xyz/plugins/feed/assets/telemetry.gif?title=bubbleSort&amp;url=/archives/bubblesort" width="1" height="1" alt="" style="opacity:0;">面试官：说说你对冒泡排序的理解？如何实现？应用场景？ 一、是什么 冒泡排序（Bubble Sort），是一种计算机科学领域的较简单]]></description><guid isPermaLink="false">/archives/bubblesort</guid><dc:creator>Administrator</dc:creator><pubDate>Sat, 23 May 2026 16:28:07 GMT</pubDate></item><item><title><![CDATA[BinarySearch]]></title><link>https://blog.211699.xyz/archives/binarysearch</link><description><![CDATA[<img src="https://blog.211699.xyz/plugins/feed/assets/telemetry.gif?title=BinarySearch&amp;url=/archives/binarysearch" width="1" height="1" alt="" style="opacity:0;">面试官：说说你对二分查找的理解？如何实现？应用场景？ 一、是什么 在计算机科学中，二分查找算法，也称折半搜索算法，是一种在有序数组]]></description><guid isPermaLink="false">/archives/binarysearch</guid><dc:creator>Administrator</dc:creator><pubDate>Sat, 23 May 2026 16:28:06 GMT</pubDate></item><item><title><![CDATA[WebView_jscore]]></title><link>https://blog.211699.xyz/archives/webview_jscore</link><description><![CDATA[<img src="https://blog.211699.xyz/plugins/feed/assets/telemetry.gif?title=WebView_jscore&amp;url=/archives/webview_jscore" width="1" height="1" alt="" style="opacity:0;">面试官：说说微信小程序的实现原理？ 一、背景 网页开发，渲染线程和脚本是互斥的，这也是为什么长时间的脚本运行可能会导致页面失去响应的原因，本质就是我们常说的 JS 是单线程的 而在小程序中，选择了 Hybrid&lt;/]]></description><guid isPermaLink="false">/archives/webview_jscore</guid><dc:creator>Administrator</dc:creator><pubDate>Sat, 23 May 2026 16:28:06 GMT</pubDate></item><item><title><![CDATA[Algorithm]]></title><link>https://blog.211699.xyz/archives/algorithm</link><description><![CDATA[<img src="https://blog.211699.xyz/plugins/feed/assets/telemetry.gif?title=Algorithm&amp;url=/archives/algorithm" width="1" height="1" alt="" style="opacity:0;">面试官：说说你对算法的理解？应用场景？ 一、是什么 算法（Algorithm）是指解题方案的准确而完整的描述，是一系列解决问题的清晰指令，算法代表着用系统的方法描述解决问题的策略机制 也就是说，能够对一定规范的输入，在有限时间内获得所要求的输]]></description><guid isPermaLink="false">/archives/algorithm</guid><dc:creator>Administrator</dc:creator><pubDate>Sat, 23 May 2026 16:28:06 GMT</pubDate></item><item><title><![CDATA[requestPayment]]></title><link>https://blog.211699.xyz/archives/requestpayment</link><description><![CDATA[<img src="https://blog.211699.xyz/plugins/feed/assets/telemetry.gif?title=requestPayment&amp;url=/archives/requestpayment" width="1" height="1" alt="" style="opacity:0;">面试官：说说微信小程序的支付流程？ 一、前言 微信小程序为电商类小程序，提供了非常完善、优秀、安全的支付功能 在小程序内可调用微信的API完成支付功能，方便、快捷 场景如下图所示：]]></description><guid isPermaLink="false">/archives/requestpayment</guid><dc:creator>Administrator</dc:creator><pubDate>Sat, 23 May 2026 16:28:05 GMT</pubDate></item><item><title><![CDATA[optimization]]></title><link>https://blog.211699.xyz/archives/optimization</link><description><![CDATA[<img src="https://blog.211699.xyz/plugins/feed/assets/telemetry.gif?title=optimization&amp;url=/archives/optimization" width="1" height="1" alt="" style="opacity:0;">面试官：说说提高微信小程序的应用速度的手段有哪些？ 一、是什么 小程序启动会常常遇到如下图场景：]]></description><guid isPermaLink="false">/archives/optimization</guid><dc:creator>Administrator</dc:creator><pubDate>Sat, 23 May 2026 16:28:05 GMT</pubDate></item></channel></rss>