码迷,mamicode.com
首页 >  
搜索关键字:using 127.0.0.1 for servername    ( 53996个结果
MySQL中的排序
在编写SQL 语句时常常会用到 order by 进行排序,那么排序过程是什么样的?为什么有些排序执行比较快,有些排序执行很慢?又该如何去优化? 索引排序 索引排序指的是在通过索引查询时就完成了排序,从而不需要再单独进行排序,效率高。索引排序是通过联合索引实现的。因为联合索引是从最左边的列开始起按大 ...
分类:数据库   时间:2021-01-04 11:05:30    阅读次数:0
填坑避雷真君之——.NET5 + VUE使用SinalR实现前后端通讯
本文旨在节约时间,避免查阅资料和踩坑耗费太多时间,如果你只想快速整活,那看这个就对了。 1、.NET5后端部分 1.1首先引入包 Install-Package Microsoft.AspNetCore.SignalR 1.2创建SingalR中心 using Microsoft.AspNetCor ...
分类:Web程序   时间:2021-01-04 10:38:54    阅读次数:0
缩点+拓扑模板
#include<iostream> #include<cstdio> #include<cstdlib> #include<cstring> #include<algorithm> #include<stack> #include<queue> #define ll long long using ...
分类:其他好文   时间:2021-01-04 10:30:49    阅读次数:0
7.方法的使用
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; //如果要弹窗。加命名空间 using System.Windows ...
分类:其他好文   时间:2021-01-02 11:27:15    阅读次数:0
8.构造方法
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _7构造方法 { public class St ...
分类:其他好文   时间:2021-01-02 11:25:25    阅读次数:0
zookeeper不能正常启动问题(转)
[html] view plain copy [root@zookeeper1 zookeeper-3.4.5]# bin/zkServer.sh status JMX enabled by default Using config: /usr/local/zookeeper-3.4.5/bin/. ...
分类:其他好文   时间:2021-01-02 11:24:19    阅读次数:0
UVa 101 木块问题 (The Blocks Problem)
题目描述 关于上面的指令,说明如下: move a onto b: a 和 b 都是木块号码,在把堆放在木块 a 和 b 上的所有木块归位到它们的初始位置后,再把木块 a 放到木块 b 上。 move a over b: a 和 b 都是木块号码,在把堆放在木块 a 上的所有木块归位到它们的初始位置 ...
分类:其他好文   时间:2021-01-02 11:14:16    阅读次数:0
AcWing 842. 排列数字
给定一个整数n,将数字1~n排成一排,将会有很多种排列方法。 现在,请你按照字典序将所有的排列方法输出。 #include<bits/stdc++.h> using namespace std; int n,p[10]; bool k[10]; void out() { for(int i=1;i< ...
分类:Windows程序   时间:2021-01-02 11:10:23    阅读次数:0
C# 定时关机代码
c#定时关机代码 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; usin ...
分类:Windows程序   时间:2021-01-02 11:04:09    阅读次数:0
ICPC2020 济南站 L 题 (数位dp)
题目链接: 发现 \(m\) 很小,所以只需要先数位 \(dp\),然后暴力枚举后 \(8\) 位的情况即可,因为涉及到进位,所以还需要维护第八位之前有几个连续的 \(1\), 设 \(dp[0/1][i][0/1][0/1]\) 表示,当前到第 \(i\) 位,卡不卡上界,从第 \(i\) 位向前 ...
分类:其他好文   时间:2021-01-02 10:38:14    阅读次数:0
53996条   上一页 1 ... 52 53 54 55 56 ... 5400 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!