找到约 10000 条结果
  • Linux 上使用二进制(预编译)文件安装 MySQL
    安装配置 {代码...} 编写安装脚本 {代码...} 运行安装脚本 {代码...} 配置及测试 {代码...} 参考:[链接]MySQL 目录结构/usr/local/mysql目录内容binmysqld 服务端、客户端和二进制文件docsMySQL 手册manUnix 手册include头文件lib类库share错误消息,字典和用于数据库安装的SQLsupport-files杂项支持文件/etc/my.cnf配...
    2021-03-21
  • 二分查找-JS实现
    {代码...} 有序数组中查找
    2017-01-05
    2
  • 微信小程序项目-你是什么垃圾?
    垃圾分类特别火也不知道北京什么时候也开始执行,看见之前上海市民被灵魂拷问了以后垃圾真的不知道如何丢了,作为程序员就做一个小程序造福人类吧。 效果图:一、全局的app.json和app.wxss加入了一点东西 App.json {代码...} App.wxss {代码...} 二、下面就是首页的index.wxml、index.js、 index.wxss index.wxml {代码....
    2019-09-26
  • 常用算法PHP版
    下面分享一些最常见的算法,用PHP如何实现。 冒泡排序 function bubble_sort($arr) { {代码...} } 归并排序 function Merge(&$arr, $left, $mid, $right) { {代码...} }function MergeSort(&$arr, $left, $right) { {代码...} } 二分查找-递归 function bin_search($arr,$low,$high,$value) { {代码...} } 二分...
    2017-04-14
  • 网上移值java 版微信发红包到 php 版
    {代码...}
    2019-07-19
  • ES--ids查询
    ES每一行数据,即文档都会有一个id,如果指定某一列field值作为id,则该列field必须为唯一键,类似于MySQL的UK;不过不指定,ES会自动生成,常常为了更好的定位数据,会指定一列满足UK的field作为文档的id,接下来我们说一下根据id查询。类似MySQL的 where id=?
    2021-07-06
  • Computer Lab
    You run four computer labs. Each lab contains computer stations that are numbered as shown in the table below:-Lab Number Computer Station Numbers1 1-52 1-63 1-44 1-3Each user has a unique five-digit ID Number. Whenever a user logs on, the user's ID, Lab Number, and the computer station are trans...
    2021-11-10
  • LeetCode -- Trie
    In computer science, trie, also known as prefix tree or dictionary tree, is an ordered tree used to store associative arrays, in which the key is usually a string. Different from binary search tree, the key is not directly saved in the node, but determined by the location of the node in the tree....
    2021-05-16
  • COMP20008 专题
    COMP20008 Elements of Data ProcessingAssignment 1March 3, 2021Due dateThe assignment is worth 20 marks, (20% of subject grade) and is due 8:00am Thursday1st April 2021 Australia/Melbourne time.BackgroundLearning outcomesThe learning objectives of this assignment are to: Gain practical experience ...
    2022-04-12
  • 前端:css 瀑布流实现
    1. 瀑布流布局 {代码...} 2. 解决column-count引起的内容割裂bug容器内加上样式 {代码...}
    2021-04-28
  • [elixir! #0042] 与 rust 的初次会面
    在看了许多安利 rust 的视频之后, 我决定花一个月的时间来尝试一下 rust. 一周过去了, 我对 Ownership, Lifetime 这些概念还是一头雾水, 但我也不求立刻理解 rust 里所有的概念, 因为它的其它部分同样引人注目.
    2017-07-10
  • vue组件---搜索框
    基础形态高级搜索搜索完成组件的基本代码 {代码...} 同时,也写入了全局混入 {代码...} 上面代码中涉及到一个packageRequestAndResults方法 {代码...} 上面有一个searchBaseData,下面即将出场页面使用 {代码...} item-num必须与搜索item的个数一致,绑定results,clear,search无需改名,因为上面的mixins中已定义,除非...
    2020-12-01
  • COMP20008 处理数据
    COMP20008 Elements of Data ProcessingAssignment 1March 3, 2021Due dateThe assignment is worth 20 marks, (20% of subject grade) and is due 8:00am Thursday1st April 2021 Australia/Melbourne time.BackgroundLearning outcomesThe learning objectives of this assignment are to:❼ Gain practical experience...
    2022-04-07
  • 数据处理COMP20008
    COMP20008 Elements of Data ProcessingAssignment 1March 3, 2021Due dateThe assignment is worth 20 marks, (20% of subject grade) and is due 8:00am Thursday1st April 2021 Australia/Melbourne time.BackgroundLearning outcomesThe learning objectives of this assignment are to: Gain practical experience ...
    2022-04-08
  • COMP20008 原理解析
    COMP20008 Elements of Data ProcessingAssignment 1March 3, 2021Due dateThe assignment is worth 20 marks, (20% of subject grade) and is due 8:00am Thursday1st April 2021 Australia/Melbourne time.BackgroundLearning outcomesThe learning objectives of this assignment are to: Gain practical experience ...
    2022-04-14
  • Elasticsearch 向量搜索
    Elasticsearch 向量搜索本文将会介绍 Elasticsearch 向量搜索的两种方式。向量搜索提到向量搜索,我想你一定想知道:向量搜索是什么?向量搜索的应用场景有哪些?向量搜索与全文搜索有何不同?ES 的全文搜索简而言之就是将文本进行分词,然后基于词通过 BM25 算法计算相关性得分,从而找到与搜索语句相似的文本,其本质...
    2022-04-15
  • [零基础学python]使用tornado表单和模板
    But when he heard this, he said:"Those who are well have no need of a physician, but those who are sick. Go and learn what this means,'Idesire mercy, not sacrifice' For I have come to call not the righteous but sinners."(MATTHEW 9:12)
    2014-10-21