找到约 10000 条结果
  • spring data mongo模糊搜索
    使用正则 {代码...} 使用full text search 3.2版本才支持中文 {代码...} TextCriteria {代码...}
    2016-10-18
  • ABAP Webdynpro性能测试工具
    Under package SWDP_PERFORMANCE_VERIFICATION there is a pair of reports WDT_TRACE_ON and WDT_TRACE_OFF which could switch on and switch off performance trace.To switch on trace, set the user parameter WDA_PERF_TRACE_ON as abap_true, then run report WDT_TRACE_ON.
    2020-08-06
  • elasticsearch7.X 创建索引、文档、fields
    {代码...} 四、文档的操作 1、基本操作1)添加数据 {代码...} {代码...} {代码...} 2)查询GET testbasedoc/_doc/13)更新 {代码...} 4)删除文档DELETE /tehero_index/_doc/15)批量操作文档a、查询多个_mget {代码...} b、批量执行多个操作 {代码...} 2、复杂操作 (排序,分页,高亮,模糊查询,精准查询)1)简单搜索_s...
    2021-03-30
  • SIT742 数据分析
    SIT742 (Modern Data Science)Full Marks: 40Assessment Task 022021 Trimester 1, Due: 8:00pm AEST, 22/05/2021Students with difficulty in meeting the deadline because of illness, etc. must apply for anassignment extension in CloudDeakin no later than 12:00pm on 21/05/2021 (Friday).• This is a group w...
    2022-05-11
  • 微信小程序城市选择及搜索功能
    实现搜索城市功能 参考 微信小程序 之『仿美团城市选择 城市切换』[链接] js文件 {代码...} wxml文件 {代码...} wxss文件 {代码...}
    2019-03-21
    2
  • 部署tomcat项目
    mac上直接启动tomcat切到目录apache-tomcat-8.5.32/bin执行命令sh startup.sh启动成功terminal上可以看到Tomcat started.
    2020-08-15
  • 阿里低代码引擎 | LowCodeEngine - 多页面管理(提供完善 github 代码示例)
    其实阿里低代码引擎 lowcode-engine 本身是支持该功能,提供了 openDocument、documents、removeDocument、exportSchema 的 API,在《低代码引擎搭建协议规范》中有所体现。同时在钉钉社区、github、哔哩哔哩中,金蝉大佬也点明了实现多页面管理功能的关键点及 API。
    2022-08-13
  • 设计模式之工厂模式
    实现了创建者和调用者分离,工厂模式分为简单工厂、工厂方法、抽象工厂模式 # 二、工厂模式好处工厂模式是我们最常用的实例化对象模式了,是用工厂方法代替new操作的一种模式。利用工厂模式可以降低程序的耦合性,为后期的维护修改提供了很大的便利。将选择实现类、创建对象统一管理和控制。从而将调用者跟我们的实现类...
    2019-10-30
  • LeetCode[270] Closest Binary Search Tree Value
    Given a non-empty binary search tree and a target value, find the value in the BST that is closest to the target. Note:Given target value is a floating point.You are guaranteed to have only one unique value in the BST that is closest to the target.
    2016-11-01
  • php 生成一批随机数 随机数之合为一个值
    {代码...}
    2018-12-01
  • [LeetCode] Largest BST Subtree
    Given a binary tree, find the largest subtree which is a Binary Search Tree (BST), where largest means subtree with largest number of nodes in it.
    2016-10-20
  • [LeetCode] Convert Sorted Array to Binary Search Tree
    Given a sorted (increasing order) array, Convert it to create a binarytree with minimal height. Notice There may exist multiple validsolutions, return any of them.
    2017-05-12
  • 11.leetcode Range Sum of BST
    The binary search tree is guaranteed to have unique values. #### 1. 例子
    2019-04-16
  • 常用的STL查找算法
    常用的STL查找算法 《effective STL》中有句忠告,尽量用算法替代手写循环;查找少不了循环遍历,在这里总结下常用的STL查找算法; 查找有三种,即点线面: 点就是查找目标为单个元素; 线就是查找目标为区间; 面就是查找目标为集合; 针对每个类别的查找,默认的比较函数是相等,为了满足更丰富的需求,算法也都提供了...
    2015-06-10
  • Neo 虚拟机
    上一篇《Neo 编译器》中说明了Neo编译器是怎么把CIL转成neo虚拟机的opcode,那么vm虚拟机又是怎么处理这些代码的,这篇文章我们看一下虚拟机的代码。
    2018-12-27
  • sphinx 全文搜索引擎
    [root@localhost ~]#cd /usr/local/sphinx/etc #进入sphinx的配置文件目录[root@localhost etc]# cp sphinx.conf.dist sphinx.conf #新建Sphinx配置文件[root@localhost etc]# vim sphinx.conf #编辑sphinx.conf
    2017-01-09
  • 前端每日实战:3# 视频演示如何用纯 CSS 创作一个容器厚条纹边框特效
    效果预览 按下右侧的“点击预览”按钮在当前页面预览,点击链接全屏预览。 [链接] 可交互视频教程 此视频是可以交互的,你可以随时暂停视频,编辑视频中的代码。 请用 chrome, safari, edge 打开观看。 [链接] 源代码下载 请从 github 下载。 [链接] 代码解读 定义一个名为 box 的容器: {代码...} 内容居中显示: {代码.....
    2018-04-25
    12