ICode9

精准搜索请尝试: 精确搜索
  • 数据结构 严薇敏 串 详解KMP算法2022-03-21 23:00:53

    KMP算法是一种改进的字符串匹配算法,由D.E.Knuth,J.H.Morris和V.R.Pratt提出的,因此人们称它为克努特—莫里斯—普拉特操作(简称KMP算法)。KMP算法的核心是利用匹配失败后的信息,尽量减少模式串与主串的匹配次数以达到快速匹配的目的。具体实现就是通过一个next()函数实现,函数本身包含

  • excel代码存档2022-03-21 18:02:05

      Sub 宏2() ' ' 宏2 宏 Range("汇总表!A1:A2").Value = Range("表1!A1:A2").Value End Sub      Sub 宏2() ' Range("C13:C14").Value = Range("A1:A2").Value ' 宏2 宏 Sheets("表1").Select

  • 用VB做编程语言2022-03-21 13:30:06

    废话不多说,上代码 Module1 Public TC, TS As String Function RunCode(ByVal ThisCode As String) TmpCode = LCase(ThisCode) a = InStr(TmpCode, "printl ") If a = 1 Then TC = "ot" TS = Mid(ThisCode, 8) End If a = InStr(TmpCode, "ifobox &

  • 题目91:已知一个数组,这个数组的一个平台(Plateau)就是连续的一串值相同的元素,并且这一串元素不能再延伸。试编写一个程序,接收一个数组,把这个数组最长的平台找出来。2022-03-21 11:31:11

    题目转载:http://python.wzms.com/s/1/55 题目描述: 已知一个数组,这个数组的一个平台(Plateau)就是连续的一串值相同的元素,并且这一串元素不能再延伸。例如,在 1,2,2,3,3,3,4,5,5,6中1,2-2,3-3-3,4,5-5,6都是平台。试编写一个程序,接收一个数组,把这个数组最长的平台找出 来。在上面的例子中3-3-3就

  • linux kernel makefile 分析 - 22022-03-19 12:36:27

    上一篇:https://www.cnblogs.com/zhangzhiwei122/p/16025859.html 背景说明 版本: 5.10.0 - 下面分析中 使用的行号,都是 参考 这个 版本的 Makefile 。 在线浏览: https://lxr.missinglinkelectronics.com/linux/Makefile   使用场景: 在源码文件夹下面建立一个build 文件夹,然后使

  • test22022-03-10 11:01:39

    @Override public String getStatSql() { StringBuilder sqlAppender = new StringBuilder("SELECT STATUS as status, count( * ) as value" + " FROM (SELECT a.prodcode, b.expiredtime," + " CASE

  • excel单元格图片居中2022-03-09 09:31:28

    1.单元格内图片 Sub dq() Dim shp As Shape For Each shp In ActiveSheet.Shapes shp.Left = (shp.TopLeftCell.Width - shp.Width) / 2 + shp.TopLeftCell.Left shp.Top = (shp.TopLeftCell.Height - shp.Height) / 2 + shp.TopLeftCell.Top Next End Sub 2.合并单元格内图片

  • 批量打印本工作簿内所有工作表2022-03-04 14:34:55

    实际这个问题不需要用VBA,因为可以直接选取所有工作表后再开始打印,但如此一来页码的设置会出现问题。 例如一个工作簿内共12个工作表,每个工作表单独打印页码为1-2页不等,全部选取后一起打印,页码会完全连续,如第三个工作表应该是“第1页,共2页”,却显示成了“第4页,共20页”这样的。 Sub

  • [算法]剑指offer p26复杂链表的复制 golang2022-03-03 13:00:15

    [算法]剑指offer p26复杂链表的复制 golang 题目 题目:请实现函数Clone,复制一个复杂链表。在复杂链表中,每个结点除了有一个next指针指向下一个结点外,还有一个sub指向链表中的任意结点或者NULL。结点的 golang 定义如下: type ComplexLinkNode struct { Value int Next *Com

  • 【python】删除包含指定文件名的文件夹2022-03-02 22:00:52

    代码 import os import os.path as pth import shutil def rm_empty_dir(path: str, filename_tag: str): all_files = os.listdir(path) count = 0 for file in all_files: dirname = pth.join(path, file) if pth.isdir(dirname):

  • js实现简单的发布订阅模式2022-03-02 11:00:25

    class Dep { //主题对象 constructor(){ this.subs = [] //订阅者列表 } notify(){ //所有的订阅者更新 this.subs.forEach(sub => { sub.update() }) } } class Sub { //订阅者 constructor(data){ this.data = data; } update(){ //订阅

  • excel 将图片的链接URL 显示为图片 转2022-03-02 10:32:39

    原帖: http://www.mrexcel.com/forum/excel-questions/604604-insert-image-url-images-into-cells-2.html 如下VBA脚本将c1单元格内图片url链接在单元B1内把图片显示出来 Sub Test() Dim Pic As Picture Application.ScreenUpdating = False With ActiveSheet.Range("C1") Set P

  • CSS中position问题2022-02-28 21:03:48

      之前一直不太清楚position中的relative相对定位是相对于谁,之前的感觉就不说了,怕自己在乱记,查询一些资料后总结如下:   position如果没有标记默认是static,relative是相对于自己定位,absolute相对于自己最近的父元素来定位的,假如父元素(#demo)不给#demo相对定位,那么该元素(#sub)的绝

  • OpenResty-lua-cache-lua-redis-sub2022-02-27 21:58:13

    前言 对于一个 JAVAER来说,肯定都搞过并发吧,对于高并发而言,目前大家都知道的几种解决方案,如下几种 1:缓存 降低DB的访问频率,比如说redis等 2:多线程 提升task处理速度 3:加机器 通过负载均衡–治标不治本,土豪随意 4:消息队列 削峰填谷 接下来我要给大家介绍一款开源的,基于nginx做

  • STM32WL Series MCU 开发2022-02-27 21:00:18

    特性 作为STM32 RF连接产品组合的补充,STM32WL片上系统在同一芯片上集成了通用微控制器和sub-GHz无线电。 STM32WL微控制器基于Arm® Cortex-M4®和Cortex-M0®+内核(提供单核和双核架构),支持多种调制——LoRa®、(G)FSK、(G)MSK、BPSK——以确保无线应用的灵活性,采用LoRaWAN®、Sig

  • codeforces:1543B Customising the Track2022-02-26 10:31:41

                                                     B. Customising the Track time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Highway 201 is the most busy street in Rockport.

  • 模糊匹配——基于difflib2022-02-24 15:58:31

    import difflib DIFF =difflib.Differ() def fuzzy_match(seq:str,sub_seq:str ,difflib=None): """ 模糊匹配 """ assert difflib!=None, "please import difflib.Differ" def match_(seq:str,sub_seq:str ): dif

  • 【Excel】VBA编程 01 入门2022-02-24 09:00:22

      视频地址: https://www.bilibili.com/video/BV1Q5411p71p   在Excel种需要打开【开发工具】和【启用所有宏】两点 打开开发工具选项 宏启用   菜单栏才会有开发工具选项 点击VisualBasic,编写第一个VBA程序 右键新建一个模块以编写程序   第一个VBA程序代码 Sub 第一个

  • C++虚函数调用简单分析2022-02-23 03:31:07

    C++代码如下: class parent_parent { public: virtual int print() const { return 1; } }; class sub : public parent_parent { public: int print() const override { return 0; } }; int main() { parent_parent* p = new sub;

  • halcon-sub_image图像相减2022-02-21 22:00:34

    在HDevelop中 2.png    3.png     read_image (Image, 'D:/bb/tu/2.png') read_image (Image1, 'D:/bb/tu/3.png') sub_image (Image, Image1, ImageSub, 1, 0) *图像相减 * sub_image(ImageMinuend , ImageSubtrahend , ImageSub, Mult , Add) *第一个参数是被减图像,

  • python 将查询到数据,处理成包含列名和数据的字典类型数据2022-02-18 15:04:27

    try: self.connect_dbserver() self.cursor.execute(sql) res = self.cursor.fetchall() # 返回的是数组的类型 print(type(res)) print(res) # 查出当前查询的列名,保存到coloums

  • getmaillist2022-02-17 15:32:43

    import win32com.client # Outlook stuff outApp = win32com.client.gencache.EnsureDispatch("Outlook.Application") outGAL = outApp.Session.GetGlobalAddressList() entries = outGAL.AddressEntries # entryFilter = entries.Filter # entryFilter.Fields[&#

  • DataGridView EditingControl 取得当前单元格选取的内容2022-02-16 11:04:10

    Private Sub lblC01_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles lblC01.Click Dim myTxt As TextBox myTxt = CType(dgvA.EditingControl, TextBox) txtC01.Text = myTxt.SelectedText End Sub    

  • MYSQL查询近一周数据并且为空得数据自动赋值为02022-02-10 21:02:31

    部分数据库样版 思路 1.查询近7天得数据 2.由于公司需要对时间格式取月日进行处理 3.完善部分月份无数据得情况下设值为0 select gas_date as datess,number as num from (select * from fd_rq_gas_patrol where DATE_SUB(CURDATE(),INTERVAL 7 DAY)<=date(gas_date) ORDE

  • 批量将txt转换成Excel格式2022-02-08 14:05:50

    想要达到的目的:批量将txt转换成对应的Excel格式(一个txt文件对应一个Excel文件)。 1.利用现有工具(适用于数据量少的情况) 可以在线直接转换:https://anyconv.com/txt-to-xlsx-converter/ 亲测是可以使用的,但是要一个个下载。 2.利用VBA Sub txt2excel() Application.DisplayAlert

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有