// main.jsimport Particles from'@tsparticles/vue3'import{ loadFull }from'tsparticles'const app =createApp(App)
app.use(Particles,{init:async(engine)=>{awaitloadFull(engine)// you can load the full tsParticles library from "tsparticles" if you need it// loadSlim 轻量级的// await loadSlim(engine) // or you can load the slim version from "tsparticles-slim" if don't need Shapes or Animations}})
记录一个极其优雅的最大公约数方法
// 递归形式
int gcd(int a, int b) {return b 0 ? a : gcd(b, a % b);
}这里求最大公约数的方法使用了辗转相除法,只是比循环求最大公约数的方法更加优雅与简洁:
// 迭代形式
int gcd(int a, int b) {while(b ! 0…
常用极限 lim x → 0 sin x x 1 \lim_{x \to 0} {\frac{\sin x}{x}}1 limx→0xsinx1 lim x → 0 ( x 1 ) 1 x e \lim_{x \to 0} {(x1)^\frac{1}{x}}e limx→0(x1)x1e lim n → ∞ a n 1 \lim_{n \to \infty} {\sqrt[n]{a}}1 limn→∞na 1 lim n…