自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 问答 (10)
  • 收藏
  • 关注

原创 webpack js混淆插件

erfdgfgfdg

2022-11-10 22:15:34 324

原创 关于在vue中动态修改audio的src的问题

项目场景: 在vue2中给audio直接修改值 问题描述 在vue2中给audio直接修改src的时候会加载失败 如果使用require修改src就不会报错 原因分析: 这是因为vue打包后的mp3的名称是会变化的,vue会给mp3文件后面加上一串字符 很名校用require引入多了后缀 再看看不修改src的audio的src是什么样的 也是有后缀的 和require一样 ,这就是为什么直接修改src会报错 ,浏览器根本找不到对应的地址 ...

2022-05-31 13:00:08 1122

原创 C语言经典100题 :今天打鱼还是晒网

#include<stdio.h> typedef struct DAY { int ri; int month; int year;} SAVEDAY;int Calday(struct DAY TOTALNUM){ int permonth[]= {0,31,28,31,30,31,30,31,31,30,31,30,31}; int i; int totalday=0; //1990.1.1到输入的日期的时间 for(i=1990; i<TO

2021-12-14 17:05:33 639

原创 单链表终极版

#include <stdio.h> #include <stdlib.h> struct Book{ int x; struct Book *next; }; void InsertNode(struct Book **L,int x){ struct Book* new; struct Book* qian; struct Book* hou; qian=*L; hou=NULL; while(qian!=NULL&&qian->x.

2021-12-05 14:28:09 468

原创 快速排序1564654656

#include <stdio.h> int cal(int array[],int left ,int right){ int i,j; i=left; j=right; int mid; mid=array[(i+j)/2]; while(i<j){ while(array[i]<mid) { i++; } while(array[j]>mid){ j--; } if(j>=i){ int temp; temp=arra.

2021-12-03 13:44:55 77

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除