1+ <!DOCTYPE html> < html lang ="zh-CN " data-theme ="light "> < head > < meta charset ="UTF-8 "> < meta http-equiv ="X-UA-Compatible " content ="IE=edge "> < meta name ="viewport " content ="width=device-width, initial-scale=1.0,viewport-fit=cover "> < title > 十一月 2025 | Wuuu!</ title > < meta name ="author " content ="Wuuu "> < meta name ="copyright " content ="Wuuu "> < meta name ="format-detection " content ="telephone=no "> < meta name ="theme-color " content ="#ffffff "> < meta name ="description " content ="这里是一名cs学生的读读写写 ">
2+ < meta property ="og:type " content ="website ">
3+ < meta property ="og:title " content ="十一月 2025 ">
4+ < meta property ="og:url " content ="https://kingjk.asia/archives/2025/11/index.html ">
5+ < meta property ="og:site_name " content ="Wuuu! ">
6+ < meta property ="og:description " content ="这里是一名cs学生的读读写写 ">
7+ < meta property ="og:locale " content ="zh_CN ">
8+ < meta property ="og:image " content ="https://kingjk.asia/img/butterfly-icon.png ">
9+ < meta property ="article:author " content ="Wuuu ">
10+ < meta name ="twitter:card " content ="summary ">
11+ < meta name ="twitter:image " content ="https://kingjk.asia/img/butterfly-icon.png "> < link rel ="shortcut icon " href ="/img/favicon.png "> < link rel ="canonical " href ="https://kingjk.asia/archives/2025/11/index.html "> < link rel ="preconnect " href ="//cdn.jsdelivr.net "/> < link rel ="preconnect " href ="//busuanzi.ibruce.info "/> < link rel ="stylesheet " href ="/css/index.css "> < link rel ="stylesheet " href ="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free/css/all.min.css "> < script >
12+ ( ( ) => {
13+
14+ const saveToLocal = {
15+ set : ( key , value , ttl ) => {
16+ if ( ! ttl ) return
17+ const expiry = Date . now ( ) + ttl * 86400000
18+ localStorage . setItem ( key , JSON . stringify ( { value, expiry } ) )
19+ } ,
20+ get : key => {
21+ const itemStr = localStorage . getItem ( key )
22+ if ( ! itemStr ) return undefined
23+ const { value, expiry } = JSON . parse ( itemStr )
24+ if ( Date . now ( ) > expiry ) {
25+ localStorage . removeItem ( key )
26+ return undefined
27+ }
28+ return value
29+ }
30+ }
31+
32+ window . btf = {
33+ saveToLocal,
34+ getScript : ( url , attr = { } ) => new Promise ( ( resolve , reject ) => {
35+ const script = document . createElement ( 'script' )
36+ script . src = url
37+ script . async = true
38+ Object . entries ( attr ) . forEach ( ( [ key , val ] ) => script . setAttribute ( key , val ) )
39+ script . onload = script . onreadystatechange = ( ) => {
40+ if ( ! script . readyState || / l o a d e d | c o m p l e t e / . test ( script . readyState ) ) resolve ( )
41+ }
42+ script . onerror = reject
43+ document . head . appendChild ( script )
44+ } ) ,
45+ getCSS : ( url , id ) => new Promise ( ( resolve , reject ) => {
46+ const link = document . createElement ( 'link' )
47+ link . rel = 'stylesheet'
48+ link . href = url
49+ if ( id ) link . id = id
50+ link . onload = link . onreadystatechange = ( ) => {
51+ if ( ! link . readyState || / l o a d e d | c o m p l e t e / . test ( link . readyState ) ) resolve ( )
52+ }
53+ link . onerror = reject
54+ document . head . appendChild ( link )
55+ } ) ,
56+ addGlobalFn : ( key , fn , name = false , parent = window ) => {
57+ if ( ! false && key . startsWith ( 'pjax' ) ) return
58+ const globalFn = parent . globalFn || { }
59+ globalFn [ key ] = globalFn [ key ] || { }
60+ globalFn [ key ] [ name || Object . keys ( globalFn [ key ] ) . length ] = fn
61+ parent . globalFn = globalFn
62+ }
63+ }
64+
65+
66+ const activateDarkMode = ( ) => {
67+ document . documentElement . setAttribute ( 'data-theme' , 'dark' )
68+ if ( document . querySelector ( 'meta[name="theme-color"]' ) !== null ) {
69+ document . querySelector ( 'meta[name="theme-color"]' ) . setAttribute ( 'content' , '#0d0d0d' )
70+ }
71+ }
72+ const activateLightMode = ( ) => {
73+ document . documentElement . setAttribute ( 'data-theme' , 'light' )
74+ if ( document . querySelector ( 'meta[name="theme-color"]' ) !== null ) {
75+ document . querySelector ( 'meta[name="theme-color"]' ) . setAttribute ( 'content' , '#ffffff' )
76+ }
77+ }
78+
79+ btf . activateDarkMode = activateDarkMode
80+ btf . activateLightMode = activateLightMode
81+
82+ const theme = saveToLocal . get ( 'theme' )
83+
84+ theme === 'dark' ? activateDarkMode ( ) : theme === 'light' ? activateLightMode ( ) : null
85+
86+
87+ const asideStatus = saveToLocal . get ( 'aside-status' )
88+ if ( asideStatus !== undefined ) {
89+ document . documentElement . classList . toggle ( 'hide-aside' , asideStatus === 'hide' )
90+ }
91+
92+
93+ const detectApple = ( ) => {
94+ if ( / i P a d | i P h o n e | i P o d | M a c i n t o s h / . test ( navigator . userAgent ) ) {
95+ document . documentElement . classList . add ( 'apple' )
96+ }
97+ }
98+ detectApple ( )
99+
100+ } ) ( )
101+ </ script > < script > const GLOBAL_CONFIG = {
102+ root : '/' ,
103+ algolia : undefined ,
104+ localSearch : undefined ,
105+ translate : undefined ,
106+ highlight : { "plugin" :"highlight.js" , "highlightCopy" :true , "highlightLang" :true , "highlightHeightLimit" :false , "highlightFullpage" :false , "highlightMacStyle" :false } ,
107+ copy : {
108+ success : '复制成功' ,
109+ error : '复制失败' ,
110+ noSupport : '浏览器不支持'
111+ } ,
112+ relativeDate : {
113+ homepage : false ,
114+ post : false
115+ } ,
116+ runtime : '' ,
117+ dateSuffix : {
118+ just : '刚刚' ,
119+ min : '分钟前' ,
120+ hour : '小时前' ,
121+ day : '天前' ,
122+ month : '个月前'
123+ } ,
124+ copyright : undefined ,
125+ lightbox : 'null' ,
126+ Snackbar : undefined ,
127+ infinitegrid : {
128+ js : 'https://cdn.jsdelivr.net/npm/@egjs/infinitegrid/dist/infinitegrid.min.js' ,
129+ buttonText : '加载更多'
130+ } ,
131+ isPhotoFigcaption : false ,
132+ islazyloadPlugin : false ,
133+ isAnchor : false ,
134+ percent : {
135+ toc : true ,
136+ rightside : false ,
137+ } ,
138+ autoDarkmode : false
139+ } </ script > < script id ="config-diff "> var GLOBAL_CONFIG_SITE = {
140+ title : '十一月 2025' ,
141+ isHighlightShrink : false ,
142+ isToc : false ,
143+ pageType : 'archive'
144+ } </ script > < meta name ="generator " content ="Hexo 7.3.0 "> < link href ="https://cdn.bootcss.com/KaTeX/0.11.1/katex.min.css " rel ="stylesheet " /> </ head > < body > < div class ="page " id ="body-wrap "> < header class ="not-home-page " id ="page-header "> < nav id ="nav "> < span id ="blog-info "> < a class ="nav-site-title " href ="/ "> < span class ="site-name "> Wuuu!</ span > </ a > </ span > < div id ="menus "> </ div > </ nav > < div id ="page-site-info "> < h1 id ="site-title "> 十一月 2025</ h1 > </ div > </ header > < main class ="layout " id ="content-inner "> < div id ="archive "> < div class ="article-sort-title "> 全部文章 - 1</ div > < div class ="article-sort "> < div class ="article-sort-item year "> 2025</ div > < div class ="article-sort-item no-article-cover "> < div class ="article-sort-item-info "> < div class ="article-sort-item-time "> < i class ="far fa-calendar-alt "> </ i > < time class ="post-meta-date-created " datetime ="2025-11-02T02:24:09.000Z " title ="发表于 2025-11-02 10:24:09 "> 2025-11-02</ time > </ div > < a class ="article-sort-item-title " href ="/posts/c9ca5871.html " title ="前缀和数组 "> 前缀和数组</ a > </ div > </ div > </ div > < nav id ="pagination "> < div class ="pagination "> < span class ="page-number current "> 1</ span > </ div > </ nav > </ div > < div class ="aside-content " id ="aside-content "> < div class ="card-widget card-info text-center "> < div class ="avatar-img "> < img src ="/img/butterfly-icon.png " onerror ="this.onerror=null;this.src='/img/friend_404.gif' " alt ="avatar "/> </ div > < div class ="author-info-name "> Wuuu</ div > < div class ="author-info-description "> 这里是一名cs学生的读读写写</ div > < div class ="site-data "> < a href ="/archives/ "> < div class ="headline "> 文章</ div > < div class ="length-num "> 8</ div > </ a > < a href ="/tags/ "> < div class ="headline "> 标签</ div > < div class ="length-num "> 1</ div > </ a > < a href ="/categories/ "> < div class ="headline "> 分类</ div > < div class ="length-num "> 4</ div > </ a > </ div > < a id ="card-info-btn " target ="_blank " rel ="noopener " href ="https://github.com/xxxxxx "> < i class ="fab fa-github "> </ i > < span > Follow Me</ span > </ a > </ div > < div class ="card-widget card-announcement "> < div class ="item-headline "> < i class ="fas fa-bullhorn fa-shake "> </ i > < span > 公告</ span > </ div > < div class ="announcement_content "> This is my Blog</ div > </ div > < div class ="sticky_layout "> < div class ="card-widget card-recent-post "> < div class ="item-headline "> < i class ="fas fa-history "> </ i > < span > 最新文章</ span > </ div > < div class ="aside-list "> < div class ="aside-list-item no-cover "> < div class ="content "> < a class ="title " href ="/posts/c9ca5871.html " title ="前缀和数组 "> 前缀和数组</ a > < time datetime ="2025-11-02T02:24:09.000Z " title ="发表于 2025-11-02 10:24:09 "> 2025-11-02</ time > </ div > </ div > < div class ="aside-list-item no-cover "> < div class ="content "> < a class ="title " href ="/posts/86037258.html " title ="3370.仅含置位位的最小整数 "> 3370.仅含置位位的最小整数</ a > < time datetime ="2025-10-29T15:52:06.000Z " title ="发表于 2025-10-29 23:52:06 "> 2025-10-29</ time > </ div > </ div > < div class ="aside-list-item no-cover "> < div class ="content "> < a class ="title " href ="/posts/0de6fc6c.html " title ="线性回归 "> 线性回归</ a > < time datetime ="2025-10-28T12:32:15.000Z " title ="发表于 2025-10-28 20:32:15 "> 2025-10-28</ time > </ div > </ div > < div class ="aside-list-item no-cover "> < div class ="content "> < a class ="title " href ="/posts/bb3f9679.html " title ="深度学习资源推荐 "> 深度学习资源推荐</ a > < time datetime ="2025-09-03T15:12:58.000Z " title ="发表于 2025-09-03 23:12:58 "> 2025-09-03</ time > </ div > </ div > < div class ="aside-list-item no-cover "> < div class ="content "> < a class ="title " href ="/posts/f937c652.html " title ="超算互联网(SCNet)使用教程 "> 超算互联网(SCNet)使用教程</ a > < time datetime ="2025-09-03T14:02:14.000Z " title ="发表于 2025-09-03 22:02:14 "> 2025-09-03</ time > </ div > </ div > </ div > </ div > < div class ="card-widget card-categories "> < div class ="item-headline ">
145+ < i class ="fas fa-folder-open "> </ i >
146+ < span > 分类</ span >
147+
148+ </ div >
149+ < ul class ="card-category-list " id ="aside-cat-list ">
150+ < li class ="card-category-list-item "> < a class ="card-category-list-link " href ="/categories/%E5%B7%A5%E5%85%B7/ "> < span class ="card-category-list-name "> 工具</ span > < span class ="card-category-list-count "> 4</ span > </ a > </ li > < li class ="card-category-list-item "> < a class ="card-category-list-link " href ="/categories/%E6%9C%BA%E5%99%A8%E5%AD%A6%E4%B9%A0-%E6%B7%B1%E5%BA%A6%E5%AD%A6%E4%B9%A0/ "> < span class ="card-category-list-name "> 机器学习&深度学习</ span > < span class ="card-category-list-count "> 1</ span > </ a > </ li > < li class ="card-category-list-item "> < a class ="card-category-list-link " href ="/categories/%E6%9D%82%E8%B0%88/ "> < span class ="card-category-list-name "> 杂谈</ span > < span class ="card-category-list-count "> 1</ span > </ a > </ li > < li class ="card-category-list-item "> < a class ="card-category-list-link " href ="/categories/%E7%AE%97%E6%B3%95/ "> < span class ="card-category-list-name "> 算法</ span > < span class ="card-category-list-count "> 2</ span > </ a > </ li >
151+ </ ul > </ div > < div class ="card-widget card-tags "> < div class ="item-headline "> < i class ="fas fa-tags "> </ i > < span > 标签</ span > </ div > < div class ="card-tag-cloud "> < a href ="/tags/%E7%AE%97%E6%B3%95/ " style ="font-size: 1.1em; color: #999 "> 算法</ a > </ div > </ div > < div class ="card-widget card-archives ">
152+ < div class ="item-headline ">
153+ < i class ="fas fa-archive "> </ i >
154+ < span > 归档</ span >
155+
156+ </ div >
157+
158+ < ul class ="card-archive-list ">
159+
160+ < li class ="card-archive-list-item ">
161+ < a class ="card-archive-list-link " href ="/archives/2025/11/ ">
162+ < span class ="card-archive-list-date ">
163+ 十一月 2025
164+ </ span >
165+ < span class ="card-archive-list-count "> 1</ span >
166+ </ a >
167+ </ li >
168+
169+ < li class ="card-archive-list-item ">
170+ < a class ="card-archive-list-link " href ="/archives/2025/10/ ">
171+ < span class ="card-archive-list-date ">
172+ 十月 2025
173+ </ span >
174+ < span class ="card-archive-list-count "> 2</ span >
175+ </ a >
176+ </ li >
177+
178+ < li class ="card-archive-list-item ">
179+ < a class ="card-archive-list-link " href ="/archives/2025/09/ ">
180+ < span class ="card-archive-list-date ">
181+ 九月 2025
182+ </ span >
183+ < span class ="card-archive-list-count "> 4</ span >
184+ </ a >
185+ </ li >
186+
187+ < li class ="card-archive-list-item ">
188+ < a class ="card-archive-list-link " href ="/archives/2025/07/ ">
189+ < span class ="card-archive-list-date ">
190+ 七月 2025
191+ </ span >
192+ < span class ="card-archive-list-count "> 1</ span >
193+ </ a >
194+ </ li >
195+
196+ </ ul >
197+ </ div > < div class ="card-widget card-webinfo "> < div class ="item-headline "> < i class ="fas fa-chart-line "> </ i > < span > 网站信息</ span > </ div > < div class ="webinfo "> < div class ="webinfo-item "> < div class ="item-name "> 文章数目 :</ div > < div class ="item-count "> 8</ div > </ div > < div class ="webinfo-item "> < div class ="item-name "> 本站访客数 :</ div > < div class ="item-count " id ="busuanzi_value_site_uv "> < i class ="fa-solid fa-spinner fa-spin "> </ i > </ div > </ div > < div class ="webinfo-item "> < div class ="item-name "> 本站总浏览量 :</ div > < div class ="item-count " id ="busuanzi_value_site_pv "> < i class ="fa-solid fa-spinner fa-spin "> </ i > </ div > </ div > < div class ="webinfo-item "> < div class ="item-name "> 最后更新时间 :</ div > < div class ="item-count " id ="last-push-date " data-lastPushDate ="2025-11-02T02:57:15.383Z "> < i class ="fa-solid fa-spinner fa-spin "> </ i > </ div > </ div > </ div > </ div > </ div > </ div > </ main > < footer id ="footer "> < div id ="footer-wrap "> < div class ="copyright "> ©2019 - 2025 By Wuuu</ div > < div class ="framework-info "> < span > 框架 </ span > < a target ="_blank " rel ="noopener " href ="https://hexo.io "> Hexo 7.3.0</ a > < span class ="footer-separator "> |</ span > < span > 主题 </ span > < a target ="_blank " rel ="noopener " href ="https://github.com/jerryc127/hexo-theme-butterfly "> Butterfly 5.3.5</ a > </ div > </ div > </ footer > </ div > < div id ="rightside "> < div id ="rightside-config-hide "> < button id ="darkmode " type ="button " title ="日间和夜间模式切换 "> < i class ="fas fa-adjust "> </ i > </ button > < button id ="hide-aside-btn " type ="button " title ="单栏和双栏切换 "> < i class ="fas fa-arrows-alt-h "> </ i > </ button > </ div > < div id ="rightside-config-show "> < button id ="rightside-config " type ="button " title ="设置 "> < i class ="fas fa-cog fa-spin "> </ i > </ button > < button id ="go-up " type ="button " title ="回到顶部 "> < span class ="scroll-percent "> </ span > < i class ="fas fa-arrow-up "> </ i > </ button > </ div > </ div > < div > < script src ="/js/utils.js "> </ script > < script src ="/js/main.js "> </ script > < div class ="js-pjax "> </ div > < script async data-pjax src ="//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js "> </ script > </ div > </ body > </ html >
0 commit comments