码迷,mamicode.com
首页 >  
搜索关键字:flex air 模仿qq聊天    ( 5186个结果
air 加载网页
package { import flash.display.MovieClip; import flash.html.HTMLLoader; import flash.net.URLRequest; import fl.core.UIComponent; import flash.display. ...
分类:Web程序   时间:2021-06-11 19:15:57    阅读次数:0
python基础面试题之输入年月日,判断这个日期是这一年的第几天。
输入年月日,判断这个日期是这一年的第几天。 方案一:不使用标准库中的模块和函数。 def is_leap_year(year): """判断指定的年份是不是闰年,平年返回False,闰年返回True""" return year % 4 == 0 and year % 100 != 0 or yea ...
分类:编程语言   时间:2021-06-07 21:16:16    阅读次数:0
SpringBoot中常用的45个注解
1.SpringBoot/spring @SpringBootApplication: 包含@Configuration、@EnableAutoConfiguration、@ComponentScan通常用在主类上; @Repository: 用于标注数据访问组件,即DAO组件; @Service: ...
分类:编程语言   时间:2021-06-02 19:23:55    阅读次数:0
软件测试概述
1.1 软件测试与需求 # 定义:# 1.软件测试定义: 在规定的条件下对程序进行操作,以发现程序错误,衡量软件质量,并对其是否能满足设计要求进行评估的过程。 (1).规定的条件 (2).目的: 发现程序错误, 衡量软件质量 # 2.通俗定义: 软件测试是一种实际输出与预期输出之间的审核或者比较过程 ...
分类:其他好文   时间:2021-06-02 17:43:02    阅读次数:0
集合划分计数 多项式EXP模板
题链 定义贝尔数$B_n=\sum _{k=1}{n}S(n,k)$,其中$S(n,k)$为第二类斯特林数,我们有$B_{n+1}=\sum_{i=0}^{n}B_i*\tbinom{n}{i}$, ? $\frac{B_{n+1}}{n!}=\sum_{i=1}^n\frac{1}{i!}*\fr ...
分类:其他好文   时间:2021-06-02 14:48:16    阅读次数:0
vue中v-for循环列表中如何将样式绑定在某一列上
1:html <div class="bd7 flex-row"> <span class="word3 flex-col" v-for="(item, index) in datalist" :class="currentClass(index)" v-on:click="jgClick(item ...
分类:其他好文   时间:2021-06-02 13:14:41    阅读次数:0
Perform Easily CodeForces - 1413C
原题链接 题意:求构造c[k] = b[i]-a[j],求(最大差值-最小差值)的最小值 考察:双指针 错误思路: 排序b,a.输出b[n]-a[n]-b[1]+a[1].实际上最大差值不一定由b[n]构成,最小差值不一定由b[1]构成.如果b数组都相同,最大差值和最小差值可以是同一个数. 正确思路 ...
分类:其他好文   时间:2021-05-25 18:28:55    阅读次数:0
Codeforces Round #722 (Div. 2)
题目:https://codeforc.es/contest/1529 A. Eshag Loves Big Arrays 题意:略 题解:发现随便取两个不同的数,一定可以删掉大的那个数。所以最后留下的肯定是最小的所有数。 #include<iostream> #include<algorithm> ...
分类:其他好文   时间:2021-05-25 18:14:45    阅读次数:0
数据结构 03-树2 List Leaves (25 分)
Given a tree, you are supposed to list all the leaves in the order of top down, and left to right. Input Specification: Each input file contains one t ...
分类:其他好文   时间:2021-05-24 14:03:04    阅读次数:0
LeetCode第241场周赛
第一题 5759. 找出所有子集的异或总和再求和 题目链接:5759. 找出所有子集的异或总和再求和 直接爆搜,计算所有可能的子集的异或和curSum,加入到答案ans里 class Solution { private: int ans; int n; public: void dfs(vecto ...
分类:其他好文   时间:2021-05-24 13:12:47    阅读次数:0
5186条   上一页 1 2 3 4 5 ... 519 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!