Two Pointers Problems Made by Mike_Zhang 数据结构与算法题主题: Valid Palindrome IILeetCode Problem #680 2022-11-25 #Java #Two Pointers
Stack Problems Made by Mike_Zhang 数据结构与算法题主题: Next Greater Element ILeetCode Problem #496 2022-11-25 #Java #Stack
String Problems Made by Mike_Zhang 数据结构与算法题主题: Valid Palindrome IILeetCode Problem #680 2022-11-25 #Java #String
Java面向对象编程之 封装性 | Java OOP Encapsulation Made by Mike_Zhang Java主题: 0. OOP Introduction0. 面向对象编程介绍 请阅读本博客的Java面向对象编程详细介绍 - Java OOP Detailed Introduction 1. Definition1. 定义封装性 (信息隐藏, Encapsulation) 是OOP的核心思想之一,是将对象的属性和方法打包在一起,并且对其用户隐藏对 2022-09-02 #Java #学习
来港第三年 - 挑战与机遇 Made by Mike_Zhang 生活主题: 嗨,各位好。时间飞逝,距离我2019年8月31日来香港读书一眨眼已经过去三年了。我也用两篇文章-第一年和第二年记录了我在香港的前两年。按照惯例,用这篇文章总结一下我在香港的第三年 - 挑战与机遇。 2022-08-31 #香港第三年
SQL Learning 2 - Query Introduction Made by Mike_Zhang Unfold SQL Topics > var content = document.getElementById("ifr"); var flag = false; const h = content.contentWindow.document.body.scrollHeight/0.6+'px' function o 2022-08-11 #学习 #SQL
SQL Learning 1 - Intro, Data Types & Table Made by Mike_Zhang 1. AbstractThis post assumes that you have already known the basics of relational database model. This post will introduce the basic concepts of SQL1, some SQL syntax, SQL dat 2022-08-09 #学习 #SQL
康威生命游戏实现 - Conway's Game of Life Implementation Made by Mike_Zhang 数据结构与算法主题: 1. Abstract1. 梗概 康威生命游戏 (Conway’s Game of Life) 是英国数学家 约翰·何顿·康威 (John Horton Conway) 在1970年发明的一种细胞自动机。能够在一定程度上让计算机模拟宇宙中生物最基本的生命规律。能够使生命从最开始的状态进化到让人意想不到的状态。 2022-08-05 #Java #算法 #Game of Life #JavaScript #React
Java面向对象编程详细介绍 | Java OOP Detailed Introduction Made by Mike_Zhang 1. Intro1. 引入 思考: 我想把大象放进冰箱,该怎么做? 很简单。 第一步让大象走到冰箱前面; 第二步让冰箱门打开; 第三部让大象走进去并站在里面; 最后一步让冰箱门关上。 2022-07-31 #Java #学习
Binary Tree Introduction - 二叉树简介 Made by Mike_Zhang 数据结构与算法主题: 1. IntroductionI’ve discussed the general tree in the last post. Now it is time to talk about a more specific type of tree: the binary tree. 2022-07-29 #Java #数据结构 #Binary Tree