- 博客(82)
- 资源 (1)
- 收藏
- 关注
原创 MySQL相关解决办法
MySQL相关解决办法对于mysql数据库来说,我只能算是一个新人,刚开始接触就遇到了很多问题:不知道怎么安装,遇到一些常见问题不知道怎么解决…MySQL 安装MySQL安装上面是我经历了多次趟坑找到的最简单、正确的安装方式MySQL安装如果你对命令行操作不太熟悉可以选用上面的使用方法,这种方法可能对新手更友好!对于安装mysql来说,它在我们学习使用阶段并不会花费太大...
2020-04-03 22:29:42 432
原创 数的读法
BASIC-20 数的读法1. 题目2. 代码package BasicLQ;import java.util.Scanner;/** * 数的读法 判断 函数 * @author 张辉 * */public class Basic20 { public static String[] nums = {"ling","yi","er","san","si","wu","...
2020-03-16 13:52:42 189
原创 Vue_shop项目
项目技术以及使用plugin此项目使用Vue-CLI脚手架这是我的项目预设项目使用的插件vue-cli-plugin-elementelement-ui——饿了么的集成UI库@vue/cli-plugin-routerrouter——路由加载组件@vue/cli-plugin-eslinteslint——代码检验插件主要用来审核代码的格式@vue/c...
2020-03-16 13:49:00 796
原创 vue基础
vue的基础内容这是我vue学习的笔记Vue 的基本代码var vm = new Vue({ el: '#app', // id属性 data: { msg: 'xxx', // 数据 }, methods: { // 方法定义 }, // 不仅如此,还有很多的内容。})Vue的基础语法v-clock解决了插值表达...
2020-03-01 15:37:19 957
原创 vue(day10)学习
vue编程式导航 // 注意:一定要区分 this.$route 和 this.$router 这两个对象, // 其中:this.$route 是路由参数的对象,所有路由参数中,params,query 都属于它。 // 其中:this.$router 是一个路由导航对象,用它可以方便的使用 JS 代码,实现路由的前进、后退、跳转到新的 URL 地址。 以下的就相当于...
2020-03-01 15:23:11 155
原创 vue学习(day09)笔记
MUI 中的滑动条首先导入 mui.jsimport mui from '../../lib/mui/js/mui.js'然后在 mounted(){} 中初始化滑动控件 mounted(){ // 当组件中的 DOM 结构被渲染好,并放置好后,就会执行这个钩子函数。 // 2. 初始化滑动控件 mui('.mui-scroll-wrapper').scroll({ ...
2020-03-01 15:20:46 152
原创 Vue中的几个问题
Promise解决地狱回调读取文件const fs = require('fs')const path = require('path')function getFileByPath(fpath,callback){ fs.readFile(fpath,'utf-8',(err,dataStr) => { // 如果报错,进入 if 分支后,if 后面的代码就没有必要执...
2020-02-18 01:39:50 617
原创 移动端UI组件
UI组件Mint-UI当我们一听到 XX UI 就可以知道它是一个界面相关的框架,玩过前端的人至少听说过 Bootstrap「它是 Twitter 开源的一个 css/html 工具包」, 而 Mint UI 是饿了么团队开源的一款基于 Vue.js 的移动端组件库.Mint-UI使用文档Mint-UI 的引入将所有组件导入:import MintUI from 'mint-ui' /...
2020-02-13 12:32:25 638
原创 完美的代价
BASIC-19 完美的代价1. 题目2. 代码package BasicLQ;import java.util.Scanner;/**完美的代价 贪心算法存在的问题:比如 9 ffdejjell 存在一个问题:d不在后边。就得处理这儿。* @author 张辉**/public class Basic19x { public static int n...
2020-02-11 11:04:47 369
原创 webpack中使用Vue开发
Vue 在页面中渲染组件使用基本方法渲染组件<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> ...
2020-02-11 10:23:14 166
原创 Vue基础(day05)
Vue.js(第五天)父子组件之间的传值 <!DOCTYPE html><html> <head> <meta charset="utf-8"> <title></title> <script src="lib/vue.js" type="text/javascript" charset="utf-8...
2020-02-07 17:18:13 125
原创 Vue基础(day04)
Vue.js(第四天)复习小球动画的实现 <head> <meta charset="utf-8"> <title></title> <script src="lib/vue.js" type="text/javascript" charset="utf-8"></script> <style ty...
2020-02-01 12:46:15 155
原创 分解质因数
BASIC-16 分解质因数1. 题目2. 代码代码1:package BasicLQ;/** * @author 张辉 * 这儿减少了之前无用的工作。 * 直接循环每一个数 * 只要可以达到一个结果,那就可以确定就是素数。 */import java.util.Scanner;public class Basic16x { public static void ma...
2020-01-30 02:57:32 281
原创 十六进制转八进制
BASIC-12 十六进制转八进制1. 问题2. 代码import java.util.Scanner;/** * 十六进制转八进制 * 十六进制15 转换成二进制1111 1+2+4+8 * 16:F 10:15 8:17 2'8': 0001:1011 17 1111 * 16:9 10:9 8:12 2'8': 0001:0010 12 1001 * 16:6 ...
2020-01-26 21:28:36 376
原创 十进制转十六进制
BASIC-10 十进制转十六进制1. 题目2. 代码import java.util.Scanner;/** * 十进制转十六进制 * 循环 整除 求余 判断 * 样例输入 * 30 * 样例输出 * 1E * @author 蔡先生 * */public class Basic10 { public static void main(String[] a...
2020-01-22 16:09:59 495
原创 字母图形
BASIC-3 字母图形1. 题目2. 代码import java.util.Scanner;/** * 基础练习 字母图形 * @author 张辉 * */public class Basic3x { public static void main(String[] args) { Scanner in = new Scanner(System.in); int ...
2020-01-22 00:24:53 164
原创 特殊回文数
BASIC-9 特殊回文数1. 题目2. 代码:import java.util.Scanner;/** * 特殊回文数 * @author 张辉 * */public class Basic9 { public static void main(String[] args) { int n; Scanner in = new Scanner(System.in...
2020-01-21 22:28:38 519
原创 MySql 8.0.19安装
MySql 8.0.19安装1.在官网下载相应的安装助手下载链接如下:https://dev.mysql.com/downloads/installer/在其中选择相应的版本即可!2.点击运行下载好的安装助手首先是选择安装模式,选择相应的安装模式。Developer DefaultServer onlyClient inlyFullCustom上面的几种安装模式我们主要...
2020-01-17 10:05:31 12977 16
原创 由于找不到VCRUNTIME140.dll,无法继续执行代码问题解决
由于找不到VCRUNTIME140.dll,无法继续执行代码问题解决解决方案:去微软官网下载安装 vc_redist.exe ,安装就可以了。有64位版和32位版,根据计算机配置进行下载,下面是下载链接:https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads在里面选择相...
2020-01-17 09:13:24 7643
原创 回文数
回文数我的程序public class Basic8 { public static void main(String[] args) { char[] a = new char[] {1,0,0,0}; for (int i = 1; i < 10; i++) { a[0] = a[3] = (char)i; for (int j = 0; j < 10;...
2019-12-30 22:53:37 98
原创 蓝桥——杨辉三角
杨辉三角我的程序import java.util.Scanner;public class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); int n = in.nextInt(); in.close(); int[][] a = Array(n);...
2019-12-29 21:53:27 275
原创 Vue.js(day03)
Vue.js(day03)上面为语雀链接,因为笔记在语雀中写的,所以在这儿有些功能实现不了,所以请移步链接。Vue.js:????vue.jsVue-resourse.js:????vue-resource.js第三方类animate.css:????animate.cssbootstrapt层叠样式:????bootstrap.css????bootstrap-responsive.cssv-resourse数据...
2019-12-25 13:20:24 152
原创 Vue基础(Day02)
Vue过滤器 <div id="app2"> <h3>{{dt|dateFormat('')}}</h3> </div> <script> //全局的过滤器,进行时间的格式化 //所谓的全局过滤器就是所有VM实例都是共享的 Vue.filter('dateFormat',function(dateStr...
2019-12-19 15:42:38 267
原创 Vue基础(day01)
vue基本代码结构 var vm = new Vue({ el : '#app',//表示,当前new的 Vue 实例,要控制页面上的那个区域 //这里的data就是MVVM中的M,专门用来保存每个页面的数据 data : { //data属性中,存放的是el中要用到的数据 ...
2019-12-18 17:47:08 380
原创 缺少数字
268.缺少数字我的代码 public static int missingNumber(int[] nums) { Arrays.sort(nums); int i; for (i = 0; i < nums.length; i++) { if(nums[i] != i) return i; } return i; ...
2019-12-18 17:39:10 137
原创 爬楼梯
70.爬楼梯我的代码 public static int climbStairs(int n) { int pre = 1; int last = 2; if (n == 0) { return 0; }else if(n == 1) { return 1; } ...
2019-12-17 19:48:08 95
原创 各位相加
258.各位相加我的代码 public static int addDigits(int num) { if (num < 10) { return num; } /* * 98 * 9 + 8 = 17 * 1 + 7 = 8 * * 38 * 3 + 8...
2019-12-16 16:32:59 94
原创 丑数
263.丑数我的代码 public static boolean isUgly(int num) { if(num == 1) { return true; }else if(num == 0) { return true; } //排除两个特征值的问题(1和0) whil...
2019-12-15 20:25:04 95
原创 打家劫舍
198.打家劫舍我的代码 public static int robx(int[] nums) { int sum1 = 0; int sum2 = 0; int i = 0; while(i < nums.length) { if(i % 2 == 0) { //奇偶...
2019-12-13 23:53:51 93
原创 合并两个有序数组
88.合并两个有序数组我的代码 public static void merge(int[] nums1, int m, int[] nums2, int n) { int i = m; int j = n + m; int flag = 0; while (i < j) { nums1[i] = nums2[f...
2019-12-12 22:21:54 163
原创 二进制求和
67.二进制求和我的代码 public static String addBinary(String a, String b) { StringBuilder ans = new StringBuilder(); int aLength = a.length() - 1; int bLength = b.length() - 1; ...
2019-12-11 23:00:12 153
原创 121.买股票的最佳时机
121.买股票的最佳时机我的代码 public static int maxProfit(int[] prices) { if ( prices.length == 0 ) return 0; int min = prices[0]; int max = prices[0]; int ans = 0; ...
2019-12-10 15:16:52 116
原创 最大子序数
53.最大子序数我的代码 public static int maxSubArray(int[] nums) { /* * 这个题怎么说呢,他就是需要判断我们之前所选择的是不是最优的解,如果找到更好的,那么就直接更新,如果不是那么还是直接用之前的继续操作 */ int sum = 0; int an...
2019-12-09 21:53:17 233
原创 最长公共前缀
14.最长公共前缀我的代码 public static String longestCommonPrefix(String[] strs) { if(strs.length == 0) return ""; int lengths = strs[0].length(); for (int p = 1;p < strs.length;p ++) ...
2019-12-07 20:12:09 1781
原创 回文数
9.回文数我的代码 public static boolean isPalindrome(int x) { if(x < 0) return false; String s = (x + ""); int pre = 0; int end = s.length() - 1; int i = 0; while(i < s.length()/2) { ...
2019-12-06 17:01:55 79
原创 字符串转换整数(java)
8.字符串转换整数题目请你来实现一个 atoi 函数,使其能将字符串转换成整数。首先,该函数会根据需要丢弃无用的开头空格字符,直到寻找到第一个非空格的字符为止。当我们寻找到的第一个非空字符为正或者负号时,则将该符号与之后面尽可能多的连续数字组合起来,作为该整数的正负号;假如第一个非空字符是数字,则直接将其与之后连续的数字字符组合起来,形成整数。该字符串除了有效的整数部分之后也可能会存在多...
2019-12-05 19:13:32 1139
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人