• 需要学习的知识点:
    • 四大cs基础课
    • JVM
    • 并发
    • 项目
    • 算法
    • Java
    • C++
    • Python
    • Go
    • 数据库MySQL
    • 框架Spring,Redis,Netty等
    • 设计模式
    • 分布式
  • 如果按照2-1算的话,离春招还有111天。刨去毕业论文和其他事情,学习时间应该还有七十天左右。
  • 今天学了:
    • 非常无奈的面试。
    • 一点MySQL语句。
  • 算法:
  • 剑指offer第一题,刷过无数遍了...
    public class Solution {
      public boolean Find(int target, int [][] array) {
          int rows = array.length;
          int cols = array[0].length;
          int row = rows-1;
          int col = 0;
          while(row>=0 && row<rows && col>=0 && col<cols) {
              if(array[row][col] == target) return true;
              else if(array[row][col] > target) {
                  row--;
              } else {
                  col++;
              }
          }
          return false;
      }
    }

  • 今天一点感悟

菜要承认,挨打站稳。找工作方面很多的痛苦和无奈来源都是太菜。
要系统认真地学,不能急功近利
如果一个东西是注定的话,先努力改变能改变的吧。