自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(16)
  • 收藏
  • 关注

原创 windows下安装scikit-sparse

https://github.com/EmJay276/scikit-sparsehttps://github.com/EmJay276/scikit-sparse

2021-12-17 15:19:30 257

原创 解决biblatex中作者显示全名的问题

近期遇到了引用文献出现作者不是人名而是机构的现象,但是通常在文章中显示的都是缩写的形式,这样显示就会有点奇怪。从小木虫中找到了一个解决方法,下面给链接: BibTex中作者是机构的问题...

2020-09-28 22:54:18 6068

转载 MySql 保证事务的原子性和持久性

文章目录1、前言2、undo日志2.1 作用2.2 举例2.3 原理3、redo日志3.1 作用3.2 举例3.3 原理1、前言为了实现事务的原子性和持久性,mysql引入了undo和redo日志(即undo log和redo log)。本篇博客来讲解下undo和redo的概念,以及mysql如何利用undo和redo进行异常宕机恢复。2、undo日志2.1 作用un...

2020-03-04 00:30:10 239

原创 120. Triangle

Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.For example, given the following triangle[ [2], ...

2019-09-09 21:20:18 85

原创 106. Construct Binary Tree from Inorder and Postorder Traversal

Given inorder and postorder traversal of a tree, construct the binary tree.Note:You may assume that duplicates do not exist in the tree.For example, giveninorder =[9,3,15,20,7]postorder = [...

2019-09-03 21:52:51 85

原创 105. Construct Binary Tree from Preorder and Inorder Traversal

Given preorder and inorder traversal of a tree, construct the binary tree.Note:You may assume that duplicates do not exist in the tree.For example, givenpreorder =[3,9,20,15,7]inorder = [9,...

2019-09-03 21:21:54 65

原创 33. Search in Rotated Sorted Array & 81. Search in Rotated Sorted Array II

33. Search in Rotated Sorted ArraySuppose an array sorted in ascending order is rotated at some pivot unknown to you beforehand.(i.e., [0,1,2,4,5,6,7] might become [4,5,6,7,0,1,2]).You are given...

2019-08-28 14:49:12 70

原创 80. Remove Duplicates from Sorted Array II

Given a sorted array nums, remove the duplicates in-place such that duplicates appeared at mosttwice and return the new length.Do not allocate extra space for another array, you must do this by mod...

2019-08-25 22:11:05 96

原创 opencv入门学习(2)——Adding (blending) two images using OpenCV

目标:什么是线性融合,有什么用 如何使用addweighted() 将两个图像融合理论:这个操作是将两幅图像或者两段视频进行交叉,具体的公式是g(x)= 其中的范围是0-1具体的代码如下:#include <iostream>#include <opencv2/imgcodecs.hpp>#include <opencv2...

2019-05-05 15:21:03 110

原创 opencv入门学习(1)——how to scan image

opencv入门学习(1)——how to scan image本节学习如何遍历图片的每一个像素,以及图像压缩的方法。

2019-04-27 16:03:28 229

原创 opencv 学习之旅

opencv 学习之旅如今已经被深圳先进院拟录取,跟随的导师是模式识别方向的,所以也要开始学习计算机视觉相关的技术,来满足我研究生期间的需求。同时也要更加更加珍惜研究生生活,争取多发paper,多打比赛,打败拖延症!!!学习计划:现在打算以官网的tutorials模块为主进行学习,以相关的技术博客为辅进行知识补充,同时将学习的代码,手撸一遍并带上自己理解的注释,并上传到github上。...

2019-04-27 14:21:57 96

原创 LeetCode 15.3Sum浅析

Given an array nums of n integers, are there elements a, b, c in nums such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero.Note:The solution set must not cont...

2018-12-29 21:58:21 80

原创 对于leetcode第五题 Longest Palindromic Substring(最长回文子串)的中心扩散法

DiscriptionGiven a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000.Example 1: Input: "babad"Output: "bab"Note: "aba" is also a va...

2018-12-28 21:33:07 210

原创 关于Fragment的之间的调用及将结果返回

这算是我的第一篇博文,写的不好,不过也算是给我自己的一个复习。上周在上android移动开发作业上要用到fragment之间信息的传递。那么这一方面是怎么实现的呢。问题如下:我在主设置界面有一行是关于wifi的界面如图我想在点击wifi之后进入wifi的fragment中如图然后在下面的寝室网中随便点击一个可以将寝室网的名字显示在主设置界面的wifi设置那一行,如我点击62

2018-01-11 11:55:20 561

转载 关于 JOptionpane的一些操作例子

转自:http://blog.csdn.net/c1481118216 最近主要学习Swing的知识,经常用到消息提示框,经常忘记他们的用法,现在写个博客供自己和大家参考,主要分为以下三种形式:首先顺带介绍下改变swing控件的风格为当前系统(windwos 10)风格的代码,以下的都是windows风格的提示框,个人觉得比java风格好看try {

2017-11-11 22:31:57 343

转载 动态规划总结

转载 http://blog.csdn.net/tobewhatyouwanttobe/article/details/42805225         动态规划一直是ACM竞赛中的重点,也是难点(对于我这种水平),因为该算法时间效率高,代码量少,多元性强、灵活度高,主要考察思维能力、建模抽象能力。学了这么久动态规划,虽然还只是个菜菜= =,但还是想总结一下,总得给学弟学妹留下一些

2016-12-15 00:30:58 371

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除