码迷,mamicode.com
首页 >  
搜索关键字:char const p    ( 57984个结果
黑客专属告白方式:所有字符的本质都是数字
char c2 = '我';char c3 = '爱';char c4 = '你'; System.out.println(c2);System.out.println((int)c2);System.out.println(c3);System.out.println((int)c3);Syste ...
分类:其他好文   时间:2021-06-22 18:14:03    阅读次数:0
Vue3.0 项目中使用事件总线
vue2.x的项目里,通过 new 一个 Vue 实例的方式,让它来充当事件总线,管理非父子组件之间的事件派发响应。 先创建一个eventBus.js文件,编辑如下 import Vue from "vue"; const eventBus = new Vue(); export default e ...
分类:其他好文   时间:2021-06-22 18:05:54    阅读次数:0
Html页基础代码
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width,initial-scale=1.0" /> <title>数据可视化< ...
分类:Web程序   时间:2021-06-22 17:36:40    阅读次数:0
webpackPlugin处理index.html到dist
1.webpack.config.js中导入 const HtmlWebpackPlugin = require('html-webpack-plugin') 2.pulgin中新增 new HtmlWebpackPlugin({ template:'index.html' }) 3.需要删除out ...
分类:Web程序   时间:2021-06-21 20:44:37    阅读次数:0
vvv
#include<stdio.h>#include<string.h>#include<stdlib.h>#include<windows.h>typedef struct student //定义结构体 { char name[20]; //姓名 char num[15]; //学号 char s ...
分类:其他好文   时间:2021-06-21 20:34:02    阅读次数:0
顺序表
#include<stdlib.h> #include<stdio.h> #include<string.h> #define MAX 10005 typedef struct node { char a[16]; int len; }node; node te,t[MAX]; int n=0; v ...
分类:其他好文   时间:2021-06-21 20:33:31    阅读次数:0
题解 P3939 数颜色
Solution 对于兔子们按照颜色为第一关键字 , 位置为第二关键字排序 , 查询个数时直接二分 , 相同颜色的修改不用管 , 不同颜色的修改不会改变统一颜色内的大小顺序 , 直接修改不会影响有序性 . 时间复杂度 \(O(nlogn)\) Code #include<iostream> #inc ...
分类:其他好文   时间:2021-06-21 20:02:00    阅读次数:0
题解 P3938 斐波那契
Solution 设$f_i$ 为斐波那契数列第 \(i\) 项 , \(f_0=0,f_1=1\) , 第一只兔子在第一月出生 考虑每次产生新兔子的过程 , 可以发现第 \(i\) 月 \((i\geq3)\) 出生的第 \(j\) 个兔子的编号为 \(f_{i-1}+j\) , 它的父亲的也就是 ...
分类:其他好文   时间:2021-06-21 20:00:18    阅读次数:0
题解 P4427 [BJOI2018]求和
Solution lca+前缀和 快读不要忘写c= 复杂度 \(O(nk)\) Code #include<iostream> #include<cstdio> #include<cstdlib> #define ll long long using namespace std; const int ...
分类:其他好文   时间:2021-06-21 19:59:39    阅读次数:0
【linux】驱动-12-并发与竞态
前言 内核驱动的并发&竟态很容易理解,其解决方法也不能,看看例程就可以了。 对于API,看看内核源码和内核文档即可。 原文链接:https://www.cnblogs.com/lizhuming/p/14907262.html 12. 并发&竞态 本章内容为驱动基石之一。 驱动只提供功能,不提供策略 ...
分类:系统相关   时间:2021-06-21 19:57:37    阅读次数:0
57984条   上一页 1 ... 7 8 9 10 11 ... 5799 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!