码迷,mamicode.com
首页 >  
搜索关键字:if then else    ( 23991个结果
C#中使用笛卡尔积方法得出穷举所有组合
借鉴微博:https://blog.csdn.net/zhifeiya/article/details/42919047 核心代码: using System;using System.Collections;using System.Collections.Generic;using System ...
分类:Windows程序   时间:2021-04-21 12:01:42    阅读次数:0
【python】Leetcode每日一题-存在重复元素3
【python】Leetcode每日一题-存在重复元素3 【题目描述】 给你一个整数数组 nums 和两个整数 k 和 t 。请你判断是否存在 两个不同下标 i 和 j,使得 abs(nums[i] - nums[j]) ? t ,同时又满足 abs(i - j) ? k 。 如果存在则返回 tru ...
分类:编程语言   时间:2021-04-20 14:30:59    阅读次数:0
蓝桥嵌入式——e2prom的读写函数。
连续写入 void i2c_write( unsigned char *strpuf,unsigned char num ,u8 addr) // strpuf是传入的数组,num是传递的个数,addr是分配的地址{ I2CStart(); I2CSendByte(0xa0); I2CWaitAck ...
分类:其他好文   时间:2021-04-20 14:19:34    阅读次数:0
状态模式
public class StatePattern { public static void main(String[] args) { Context context=new Context(); for (int i = 0; i < 10; i++) { context.handle(); } ...
分类:其他好文   时间:2021-04-19 16:06:54    阅读次数:0
「图论」第2章 最小生成树课堂过关
「图论」第2章 最小生成树课堂过关 A. 【例题1】繁忙都市 题目 代码 prim #include <iostream> #include <cstdio> #include <cstring> using namespace std; #define N 310 #define M 200010 ...
分类:其他好文   时间:2021-04-19 16:02:22    阅读次数:0
uniapp简单的接口封装 以及封装 loading 加载动画
引入的./baseSite.js let baseSite = "" if(process.env.NODE_ENV 'development'){// 开发环境 //request.js文件baseSite = 'ulr路径'}else{// 生产环境baseSite = 'url路径'} exp ...
分类:移动开发   时间:2021-04-19 15:49:52    阅读次数:0
Leecode——2021.04.17
滑动窗口 219. 存在重复元素 II 给定一个整数数组和一个整数 k,判断数组中是否存在两个不同的索引 i 和 j,使得 nums [i] = nums [j],并且 i 和 j 的差的 绝对值 至多为 k。 // 滑动窗口做法 class Solution { public boolean co ...
分类:其他好文   时间:2021-04-19 15:40:01    阅读次数:0
差分优化建边(Tax)
[Luogu P6822PA2012]Tax] (http://www.luogu.com.cn/problem/P6822") All right. Let's go! 题目描述 给出一个 n 个点 m 条边的无向图,经过一个点的代价是进入和离开这个点的两条边的边权的较大值,求从起点 1 到点 n ...
分类:其他好文   时间:2021-04-19 15:06:50    阅读次数:0
树(上半期)
树 建树 struct tr{ char x; tr*lc,*rc; }; #define nu NULL // 建树 tr* create() { tr*t ; char x;cin>>x; if(x=='#') { t=nu; }else{ t=new tr; t->x=x; t->lc=nu; ...
分类:其他好文   时间:2021-04-19 15:00:42    阅读次数:0
PAT 乙级 1054.求平均值 C++/Java
题目来源 本题的基本要求非常简单:给定 N 个实数,计算它们的平均值。但复杂的是有些输入数据可能是非法的。一个“合法”的输入是 [?] 区间内的实数,并且最多精确到小数点后 2 位。当你计算平均值的时候,不能把那些非法的数据算在内。 输入格式: 输入第一行给出正整数 N(≤)。随后一行给出 N 个实 ...
分类:编程语言   时间:2021-04-19 14:56:20    阅读次数:0
23991条   上一页 1 ... 14 15 16 17 18 ... 2400 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!