码迷,mamicode.com
首页 >  
搜索关键字:case    ( 10657个结果
android学习记录
Android布局 LinearLayout (线性布局) android:orientation 属性指定了排列方向是 vertical,如果指定的是horizontal,控件就会在水平方向上排列了。 android:gravity 是用 于指定文字在控件中的对齐方式 android:layout ...
分类:移动开发   时间:2020-10-06 21:15:46    阅读次数:49
并查集-二项树与快速合并算法
ALGS4 Exercise 1.5.15 Problem Binomial trees. Show that the number of nodes at each level in the worst-case trees for weighted quick-union are binomia ...
分类:编程语言   时间:2020-10-05 21:48:17    阅读次数:42
C# Case_1 实现用户登录的逻辑
class Program { static void Main(string[] args) { string name, pwd; Console.WriteLine("请输入用户名:"); while (true) { name = Console.ReadLine(); if (string ...
分类:Windows程序   时间:2020-09-24 22:11:39    阅读次数:109
One Theorem, One Year LightOJ - 1298(dp+欧拉函数性质)
题目链接 题意:给你n和m,令x为前m个素数,一共使用n个的乘积,例如n=3,m=2,则x=2*2*3或x=2*3*3,求所有Φ(x)的和。 思路:用到了欧拉函数的性质,首先对于x为素数,Φ(x)=x-1,然后若n*m=x,则Φ(n)*Φ(n)=Φ(x)。所以我们可以求出前500个素数,然后对其进行 ...
分类:其他好文   时间:2020-09-24 20:50:23    阅读次数:36
snake_case 和camelCase
snake_case被称为蛇形命名法,一般是用来命名变量名称的,snakecase要求短语内的各个单词或缩写之间以(下划线)做间隔,如user_name,snakecaseetc.camelCase被称为驼峰命名法,也是一种变量命名规则。camelCase要求第一个单词首字母小写,后面单词首字母大写,例如:fileName、lineNumber,camelCaseetc.最后再说一次,你们这个文本
分类:其他好文   时间:2020-09-23 23:37:47    阅读次数:37
Win32 sdk 下树形控件响应鼠标单击与双击,获得选中项的名称
//窗口过程函数INT_PTR CALLBACK myWin::myWinDlgProc(HWND dlgHwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) { switch (uMsg) { case WM_COMMAND: { OnCommand(wPa ...
分类:Windows程序   时间:2020-09-18 02:25:01    阅读次数:59
模拟会计凭证审批 OO ALV(屏幕跳转、定位行数据、审批按钮)
根据选定的单、多行会计凭证进行审批,双击单个会计凭证跳转会计订单明细。将审批的凭证记录在一张自定义表中 *& * *& Report ZFI_SP *& *& * *&参考FB03.ZFIT04 *& *& * REPORT zfi_sp. TYPE-POOLS:slis,icon. TABLES: ...
分类:其他好文   时间:2020-09-18 01:05:01    阅读次数:32
152. Maximum Product Subarray - Medium
Given an integer array nums, find the contiguous subarray within an array (containing at least one number) which has the largest product. Example 1: I ...
分类:其他好文   时间:2020-09-18 00:08:22    阅读次数:27
pytest 基础知识点事理
一、pytest使用步骤: 1、导入pytest 2、编写测试用例 无需在测试类下编写测试用例,可以直接编写测试函数 测试函数名中必须包含test_,_test 3、在pytest框架下执行测试用例 在py文件内执行测试用例 pytest.main(“-s test_case_01.py”) -s输 ...
分类:其他好文   时间:2020-09-17 21:52:52    阅读次数:35
Codeforces Round #496 (Div. 3)
ABC咕咕咕 D. Polycarp and Div 3 题意:给一个数字串,问最多能选出几个不相交的子串使得它们组成的 $10$ 进制数都是 $3$ 的倍数。 \(|s| \leq 2\times 10^5\) 题解: \(dp_{i,j}\) 表示第 \(i\) 为,数字和 \(\%3\) 为 ...
分类:其他好文   时间:2020-09-17 21:27:54    阅读次数:28
10657条   上一页 1 ... 17 18 19 20 21 ... 1066 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!