码迷,mamicode.com
首页 >  
搜索关键字:oid    ( 16201个结果
C++-字符串(string)
字符串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
【剑指offer】【栈】30.包含min函数的栈
包含min函数的栈 ...
分类:其他好文   时间:2020-03-29 13:06:11    阅读次数:60
AtCoder Beginner Contest 160题解
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加权负载均衡策略
加权轮询 后端集群每台机器都分配一个权重,权重高得会承担更多的流量,相反权重低的分配的流量也会少,这种策略允许后端集群机器配置差异化 java实现 多线程输出结果 ...
分类:编程语言   时间:2020-03-29 10:52:23    阅读次数:65
[转].NET Core技术研究-HttpContext访问的正确姿势
将ASP.NET升级到ASP.NET Core之后,相信大家都会遇到HttpContext.Current无法使用的问题。这也是我们迁移ASP.NET Core必须解决的问题。 本文我们详细讨论一下,使用HttpContext的正确姿势。 先列一下使用HttpContext的具体场景: 1. 在Co ...
分类:Web程序   时间:2020-03-29 10:51:55    阅读次数:58
leetcode 114. 二叉树展开为链表(dfs)
给定一个二叉树,原地将它展开为链表。 例如,给定二叉树 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 连接mumu模拟器
注意: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
$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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!