码迷,mamicode.com
首页 >  
搜索关键字:row    ( 12323个结果
最好用的web端代码文本编辑器ACE
使用足够简单,功能足够强大,体验足够优秀 之前有一个系列文章介绍我在运维系统开发过程中用到的那些顺手的前端插件,总共发了四篇文章介绍了三个非常棒的插件,分别是 "bootstrap duallistbox" 、 "select2" 和 "datatables" ,今天再更此系列,让好东西让更多的人知 ...
分类:Web程序   时间:2020-02-10 10:09:06    阅读次数:137
765. 情侣牵手
贪心算法(应该算吧),每次至少复合一对情侣 1 class Solution { 2 public: 3 int minSwapsCouples(vector<int>& row) { 4 if(row.empty()){return 0;} 5 int n=row.size(); 6 vector ...
分类:其他好文   时间:2020-02-10 09:53:51    阅读次数:58
120. Triangle
Problem : Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below. For example, gi ...
分类:其他好文   时间:2020-02-10 00:20:24    阅读次数:81
改日期
Sub zh() For i = 2 To Range("a65536").End(xlUp).Row Range("b" & i) = DateSerial(Left(Range("a" & i), 4), Mid(Range("a" & i), 5, 2), Right(Range("a" & ...
分类:其他好文   时间:2020-02-09 22:22:00    阅读次数:67
AtCoder Beginner Contest 154 题解
人生第一场 AtCoder,纪念一下 话说年后的 AtCoder 比赛怎么这么少啊(大雾 AtCoder Beginner Contest 154 题解 A Remaining Balls We have A balls with the string S written on each of th ...
分类:其他好文   时间:2020-02-09 22:16:59    阅读次数:127
ElementUI Form之radio
<template> <div> <el-row> <el-col :span="6"> radio单选框 </el-col> <el-col :span="18"> <template> <el-radio v-model="radio" label="1" @change="changeHand ...
分类:其他好文   时间:2020-02-09 16:51:09    阅读次数:95
vue.js ③
1.组件使用的细节点 H5编码中的规范是tr必须在tbody里所以不能直接套用<row></row>的写法,<ul>标签下支持<li>,select标签下使用option,否则dom会出错 在子组件中定义data,是以一个函数的形式呈现的,以防止多子组件的数据冲突 $refs代表着选取所有ref,再 ...
分类:Web程序   时间:2020-02-09 11:52:46    阅读次数:96
深入源码解析spring aop实现的三个过程
Spring AOP的面向切面编程,是面向对象编程的一种补充,用于处理系统中分布的各个模块的横切关注点,比如说事务管理、日志、缓存等。它是使用动态代理实现的,在内存中临时为方法生成一个AOP对象,这个对象包含目标对象的所有方法,在特定的切点做了增强处理,并回调原来的方法。 Spring AOP的动态 ...
分类:编程语言   时间:2020-02-09 09:38:37    阅读次数:61
通过Java程序简单模拟B\S服务器
模拟Browser/Servers服务器 模拟网站服务器,使用浏览器访问自己编写的服务端程序,查看网页效果。 案例分析 准备页面数据 创建index.html文件,文件内容如下: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title> ...
分类:编程语言   时间:2020-02-08 23:14:22    阅读次数:153
vue 组件代码撸一遍
index.vue 源代码 三部分:template,script,style 一 、template 模板部分 1 <template> 2 <div class="index" v-cloak> 3 <div class="header acea-row row-center-wrapper"> ...
分类:其他好文   时间:2020-02-08 15:17:50    阅读次数:174
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!