字符串string 可以进行相加操作, s.size(), s.length(),s.c_str() 转换为c语言类型 /* 字符串演示 */ #include <iostream> #include <cstring> using namespace std; int main(void) { s ...
分类:
编程语言 时间:
2020-03-30 11:10:53
阅读次数:
75
A. 签到题1。 #include<bits/stdc++.h> #define fi first #define sd second #define lson (nd<<1) #define rson (nd+nd+1) #define PB push_back #define mid (l+r> ...
分类:
其他好文 时间:
2020-03-29 12:51:24
阅读次数:
76
#include<iostream> #include<algorithm> #include<string> #include<cstring> #include<queue> using namespace std; int dx[]={0,0,1,-1}; int dy[]={1,-1,0,0 ...
分类:
其他好文 时间:
2020-03-29 12:46:37
阅读次数:
134
加权轮询 后端集群每台机器都分配一个权重,权重高得会承担更多的流量,相反权重低的分配的流量也会少,这种策略允许后端集群机器配置差异化 java实现 多线程输出结果 ...
分类:
编程语言 时间:
2020-03-29 10:52:23
阅读次数:
65
将ASP.NET升级到ASP.NET Core之后,相信大家都会遇到HttpContext.Current无法使用的问题。这也是我们迁移ASP.NET Core必须解决的问题。 本文我们详细讨论一下,使用HttpContext的正确姿势。 先列一下使用HttpContext的具体场景: 1. 在Co ...
分类:
Web程序 时间:
2020-03-29 10:51:55
阅读次数:
58
给定一个二叉树,原地将它展开为链表。 例如,给定二叉树 1 / \ 2 5 / \ \3 4 6将其展开为: 1 \ 2 \ 3 \ 4 \ 5 \ 6 来源:力扣(LeetCode)链接:https://leetcode-cn.com/problems/flatten-binary-tree-to ...
分类:
其他好文 时间:
2020-03-28 21:58:14
阅读次数:
68
注意:Android Studio 连接外部模拟器之前需要先打开模拟器 点击运行后发现没有外部的模拟器选择 找到SDK的安装目录 打开 Android Studio 左下角的 Terminal 进入到刚才找到的 SDK的安装目录的 platform-tools下 输入: adb connect 12 ...
分类:
移动开发 时间:
2020-03-28 21:56:18
阅读次数:
194
给定一个数组,将奇数全部调整到偶数前面。 //调整数组顺序使奇数位于偶数前面 11223344 class SoftCount{ static int[] arr={1,2,3,4,5,6,7,8,9,10}; static int[] soft(int[] arr){ int left=0; in ...
分类:
编程语言 时间:
2020-03-28 20:16:04
阅读次数:
74
$CF1316F Battalion Strength$ ~~话说这题真的能评黑吗~~ Solution 先考虑暴力。 将数组排序。我们枚举 $p_i,p_j(i define del(a,i) memset(a,i,sizeof(a)) define ll long long define inl ...
分类:
其他好文 时间:
2020-03-28 10:25:33
阅读次数:
90