码迷,mamicode.com
首页 >  
搜索关键字:example 复杂条件查询    ( 17809个结果
[LC] 347. Top K Frequent Elements
Given a non-empty array of integers, return the k most frequent elements. Example 1: Input: nums = [1,1,1,2,2,3], k = 2 Output: [1,2] Example 2: Input ...
分类:其他好文   时间:2020-02-16 01:07:50    阅读次数:63
[LC] 451. Sort Characters By Frequency
Given a string, sort it in decreasing order based on the frequency of characters. Example 1: Input: "tree" Output: "eert" Explanation: 'e' appears twi ...
分类:其他好文   时间:2020-02-16 01:05:54    阅读次数:61
寒假学习15
“记帐本”开始 MainActivity.java package com.example.myapplicationsecond; import android.os.Bundle; import com.google.android.material.floatingactionbutton.F ...
分类:其他好文   时间:2020-02-15 20:36:10    阅读次数:78
记账本
<?xml version="1.0" encoding="utf-8"?><android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:ap ...
分类:其他好文   时间:2020-02-15 18:53:40    阅读次数:87
Vue 侦听器
虽然计算属性在大多数情况下更合适,但有时也需要一个自定义的侦听器。这就是为什么 Vue 通过 watch 选项提供了一个更通用的方法,来响应数据的变化。 当需要在数据变化时执行异步或开销较大的操作时,这个方式是最有用的。 例如: <div id="watch-example"> <p> Ask a ...
分类:其他好文   时间:2020-02-15 13:45:34    阅读次数:108
NX二次开发-NXOpenC#Example【持续更新】
NxOpenC# Example 使用NXOPEN C#向导模板做开发以及如何查看C#帮助文档写代码 https://www.cnblogs.com/nxopen2018/p/12310032.html ...
分类:Windows程序   时间:2020-02-15 09:38:39    阅读次数:216
Android Studio学习路程(9)
今天学习怎样调用互联网的API,下面是一些代码: 1 package com.example.hp.app3; 2 3 /* 4 学会调用互联网API(公共的) 5 */ 6 7 import android.os.Bundle; 8 import android.os.Handler; 9 imp ...
分类:移动开发   时间:2020-02-14 22:35:48    阅读次数:81
LeetCode | 0215. Kth Largest Element in an Array数组中的第K个最大元素【Python】
LeetCode 0215. Kth Largest Element in an Array数组中的第K个最大元素【Medium】【Python】【快排】【堆】 Problem "LeetCode" Find the k th largest element in an unsorted array ...
分类:编程语言   时间:2020-02-14 22:35:12    阅读次数:98
记账本APP小升级
增加了显示当月总收入和总支出的功能,增加了选择收支类型的功能,删去了删除账目后恢复的功能。 1、数据库的升级 1、entity 添加了一个收支类型的字段: package com.example.cashbook; ? import androidx.room.ColumnInfo; import ...
分类:移动开发   时间:2020-02-14 20:42:20    阅读次数:94
leetcode 206. Reverse Linked List
题目内容 Reverse a singly linked list. Example: 分析过程 题目归类: 题目分析: 边界分析: 空值分析 循环边界分析 方法分析: 数据结构分析 状态机 状态转移方程 最优解 测试用例构建 代码实现 非递归 递归 效率提高 拓展问题 Reverse Linked ...
分类:其他好文   时间:2020-02-14 16:21:24    阅读次数:53
17809条   上一页 1 ... 95 96 97 98 99 ... 1781 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!