Yuxuan Wu
  • HOME
  • ARCHIVES
  • CATEGORIES
  • TAGS
  • ABOUT
  • HOME
  • ARCHIVES
  • CATEGORIES
  • TAGS
  • ABOUT
  • MySQL基础课堂笔记

    Day1今日内容 数据库的基本概念 MySQL数据库软件 安装 卸载 配置 SQL 数据库的基本概念 数据库的英文单词: DataBase 简称 : DB 什么数据库? 用于存储和管理数据的仓库。 数据库的特点: 持久化存储数...
    2021-07-01
    • Databases
    • tutorial
    • | Java
    • | SQL
    Read more
  • 反转链表相关问题的集合

    206. 反转链表给你单链表的头节点 head ,请你反转链表,并返回反转后的链表。 示例 1: 输入:head = [1,2,3,4,5]输出:[5,4,3,2,1]示例 2: 输入:head = [1,2]输出:[2,1]示例 3: 输入:h...
    2021-06-30
    • Algorithms
    • leetcode
    • | LinkedList
    Read more
  • 链表中的双指针问题

    小结 - 链表中的双指针在这里,我们为你提供了一个模板,用于解决链表中的双指针问题。 123456789101112131415// Initialize slow & fast pointersListNode slow = head;Li...
    2021-06-30
    • Algorithms
    • leetcode
    • | LinkedList
    Read more
  • Java 中“while (n-->0)” 和 “while (n! =0)”区别

    “While(n- ->0)” 使用后缀递减运算符 在“while()”块中可以或不能有更新语句,因为每次循环运行时都会获取“n”,例子如下 1234int n = 4;while (n-- > 0){ System.out....
    2021-06-29
    • Java
    • tutorial
    Read more
  • 链表集合

    设计链表单链表设计链表的实现。您可以选择使用单链表或双链表。 单链表中的节点应该具有两个属性:val 和 next。val 是当前节点的值,next 是指向下一个节点的指针/引用。 双向链表,则还需要一个属性 prev 以指示链表中的上一个节点。...
    2021-06-21
    • Algorithms
    • leetcode
    • | LinkedList
    Read more
  • Key notes for Deep learning in new computational modeling techniques for genomics

    Cross-linking immunoprecipitation (CLIP) is a method used in molecular biology that combines UV cross-linking with immunoprec...
    2021-06-17
    • Bioinformatics
    • notes
    Read more
  • BIO304 review

    Instructions to candidates for final exam of BIO304 Don’t write your name or ID number in this document or in the file na...
    2021-06-01
    • Biology
    • notes
    Read more
  • Docker实战

    镜像下载centos镜像1docker pull centos 容器创建一个基于centos的容器12345678910docker run -it centos /bin/bash --name="Name" #容器名字 t...
    2021-05-15
    • Linux
    • tutorial
    • | Docker
    Read more
  • c#单例模式

    一、引言最近在设计模式的一些内容,主要的参考书籍是《Head First 设计模式》,同时在学习过程中也查看了很多博客园中关于设计模式的一些文章的,在这里记录下我的一些学习笔记,一是为了帮助我更深入地理解设计模式,二同时可以给一些初学设计模式的朋友一...
    2021-05-14
    • C#
    • notes
    • | C#
    Read more
  • C# DBUtility封装常见数据库操作

    通用数据库访问类,封装了对数据库的常见操作 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556...
    2021-05-13
    • C#
    • notes
    • | C#
    Read more
Prev Next
© 2020 - 2022 Yuxuan Wu
Visitor Count   Totalview
Powered by Hexo | Theme Keep v3.3.1