网友分享:自己5位同学加入华为6年后无一人离职,感叹道:工资和待遇才是留住人的核心

华为

近日,有网友在网上发文,谈到了自己 5 位大学同学入职华为 6 年后无一人离职。并且感叹道:工资和待遇才是留住人的核心。

我从微博里找来了原文:

alt

贴主提到,自己是 18 年毕业于一所一本财经院校(并非 985 和 211),但却是华为财经招聘的目标院校。

在当年,华为是该校的就业天花板,只要华为财经来校做宣讲,那必然是人山人海,座无虚席。

贴主因为工资高也拼了命想进华为,但未能如愿,后来班上有 5 名同学(3 男 2 女)进入了华为。

神奇的是,六年时间过去了,前段时间发现,这几位同学目前也都还在华为,其中女生留在了深圳,男生则被派去了海外。

再进一步发现,不止这几位同学,只要是选择去华为同学,无一例外都还在华为,而自己 6 年内已经换了 3 份工作。

从而感慨道:华为工作压力肯定不小,但谁又会和钱过不去,工资和待遇才是留住人的核心。

网友在底下的评论也很有意思。

alt
alt

有不少网友开始"担心"起华为员工能干多久的问题,害怕过了 35 岁就会被优化,但也有网友指出,即使工龄只算到 35 岁,那也够了。

先不说有没有进入华为的机会,如果有一个「用 35 岁前的所有时间来换一笔不菲的储蓄(甚至可能会有几套房)」的机会,你会怎么选?

...

回归主题。

来一道和「华为」相关的算法原题。

题目描述

平台:LeetCode

题号:1603

请你给一个停车场设计一个停车系统。停车场总共有三种不同大小的车位:大,中和小,每种尺寸分别有固定数目的车位。

请你实现 ParkingSystem 类:

  • ParkingSystem(int big, int medium, int small) 初始化 ParkingSystem 类,三个参数分别对应每种停车位的数目。

  • bool addCar(int carType) 检查是否有 carType 对应的停车位。

    carType 有三种类型:大,中,小,分别用数字 1, 2 和 3 表示。一辆车只能停在  carType 对应尺寸的停车位中。

    如果没有空车位,请返回 false,否则将该车停入车位并返回 true

示例 1:

输入:
["ParkingSystem""addCar""addCar""addCar""addCar"]
[[1, 1, 0], [1], [2], [3], [1]]
输出:
[null, truetruefalsefalse]

解释:
ParkingSystem parkingSystem = new ParkingSystem(1, 1, 0);
parkingSystem.addCar(1); // 返回 true ,因为有 1 个空的大车位
parkingSystem.addCar(2); // 返回 true ,因为有 1 个空的中车位
parkingSystem.addCar(3); // 返回 false ,因为没有空的小车位
parkingSystem.addCar(1); // 返回 false ,因为没有空的大车位,唯一一个大车位已经被占据了

提示:

  • carType 取值为  12 或  3
  • 最多会调用  addCar 函数 1000 次

简单变量

一个简单的做法是,直接使用几个成员变量来记录。

Java 代码:

class ParkingSystem {
    int big, medium, small;
    public ParkingSystem(int _big, int _medium, int _small) {
        big = _big; 
        medium = _medium; 
        small = _small;
    }
    public boolean addCar(int ct) {
        if (ct == 1 && big > 0return big-- > 0;
        else if (ct == 2 && medium > 0return medium-- > 0;
        else if (ct == 3 && small > 0return small-- > 0;
        return false;
    }
}

C++ 代码:

class ParkingSystem {
public:
    int big, medium, small;
    ParkingSystem(int _big, int _medium, int _small) : big(_big), medium(_medium), small(_small) {}
    bool addCar(int type) {
        if (type == 1 && big > 0) { --big; return true; }
        else if (type == 2 && medium > 0) { --medium; return true; }
        else if (type == 3 && small > 0) { --small; return true; }
        return false;
    }
};

Python 代码:

class ParkingSystem:
    def __init__(self, big: int, medium: int, small: int):
        self.big = big
        self.medium = medium
        self.small = small

    def addCar(self, type_: int) -> bool:
        if type_ == 1 and self.big > 0:
            self.big -= 1
            return True
        elif type_ == 2 and self.medium > 0:
            self.medium -= 1
            return True
        elif type_ == 3 and self.small > 0:
            self.small -= 1
            return True
        return False
  • 时间复杂度:
  • 空间复杂度:

哈希表

另外一个更好拓展的方法,使用哈希表来进行记录。

这样做的好处是,当增加车类型,只需要重载一个构造方法即可。

Java 代码:

class ParkingSystem {
    Map<Integer, Integer> map = new HashMap<>();
    public ParkingSystem(int _big, int _medium, int _small) {
        map.put(1, _big);
        map.put(2, _medium);
        map.put(3, _small);
    }
    public boolean addCar(int ct) {
        if (map.get(ct) > 0) {
            map.put(ct, map.get(ct) - 1);
            return true;
        }
        return false;
    }
}

C++ 代码:

class ParkingSystem {
public:
    unordered_map<intintmap;
    ParkingSystem(int _big, int _medium, int _small) {
        map[1] = _big;
        map[2] = _medium;
        map[3] = _small;
    }
    bool addCar(int type) {
        if (map[type] > 0) {
            map[type] -= 1;
            return true;
        }
        return false;
    }
};

Python 代码:

class ParkingSystem:
    def __init__(self, big, medium, small):
        self.map = {1: big, 2: medium, 3: small}

    def addCar(self, type_):
        if self.map.get(type_, 0) > 0:
            self.map[type_] -= 1
            return True
        return False
  • 时间复杂度:
  • 空间复杂度:

二进制分段

事实上,由于 1000 的二进制表示只有 10 位,而 int 有 32 位。

我们可以使用一个 int 配合「位运算」来分段做。

使用 代表 big, 表示 medium, 表示 small

PS. 这样 分段的做法,在工程源码上也有体现:JDK 中的 ThreadPoolExecutor 使用了一个 变量 ( 类型) 的前 位记录线程池的状态,后 位记录程池中线程个数。

「这样的「二进制分段压缩存储」的主要目的,不是为了减少使用一个 int,而是为了让「非原子性操作」变为「原子性操作」。」

我们可以分析下为什么 ThreadPoolExecutor 要这么做。

当线程数量变化为某个特定值时,要修改的就不仅仅是「线程数量」,还需要修改「线程池的状态」。

由于并发环境下,如果要做到「原子性」地同时需要修改两个 int 的话。只能上「重量级锁」,「重量级锁」就会涉及到「内核态」的系统调用,通常是耗时是「用户态」的上百倍。

但是如果我们将「线程数量」和「线程池的状态」合二为一之后,我们只需要修改一个 int,这时候只需要使用 CAS 做法(用户态)即可保证线程安全与原子性。

那么对应到该题,如果我们允许同时停入不同类型的车,在不引入重量级锁的前提下,想要真正做到「同时」修改两种类型的车的车位的话,只能采用这样的「二进制分段」做法.

Java 代码:

class ParkingSystem {
    int cnt; // [small medium big]
    public ParkingSystem(int _big, int _medium, int _small) {
        for (int i = 0; i < 30; i++) {
            int cur = 0;
            if (i < 10) {
                cur = (_big >> i) & 1;
            } else if (i < 20) {
                cur = (_medium >> (i - 10)) & 1;
            } else if (i < 30) {
                cur = (_small >> (i - 20)) & 1;
            }
            cnt += cur == 1 ? (1 << i) : 0;
        }
    }
    public boolean addCar(int ct) {
        int cur = countOfType(ct);
        if (cur > 0) {
            setCount(ct, cur - 1);
            return true;
        }
        return false;
    }
    int countOfType(int ct) {
        int ans = 0;
        int start = --ct * 10, end = start + 10;
        for (int i = start; i < end; i++) {
            if (((cnt >> i) & 1) == 1) {
                ans += (1 << (i - start));
            }
        }
        return ans;
    }
    void setCount(int ct, int pc) {
        int start = --ct * 10, end = start + 10;
        for (int i = start; i < end; i++) {
            if (((pc >> (i - start)) & 1) == 1) {
                cnt |= (1 << i);
            } else {
                cnt &= ~(1 << i);
            }
        }
    }
}

C++ 代码:

class ParkingSystem {
public:
    int cnt = 0// [small medium big]
    ParkingSystem(int _big, int _medium, int _small) {
        for (int i = 0; i < 30; i++) {
            int cur = 0;
            if (i < 10) {
                cur = (_big >> i) & 1;
            } else if (i < 20) {
                cur = (_medium >> (i - 10)) & 1;
            } else if (i < 30) {
                cur = (_small >> (i - 20)) & 1;
            }
            cnt += cur == 1 ? (1 << i) : 0;
        }
    }
    bool addCar(int ct) {
        int cur = countOfType(ct);
        if (cur > 0) {
            setCount(ct, cur - 1);
            return true;
        }
        return false;
    }
    int countOfType(int ct) {
        int ans = 0;
        int start = --ct * 10, end = start + 10;
        for (int i = start; i < end; i++) {
            if (((cnt >> i) & 1) == 1) {
                ans += (1 << (i - start));
            }
        }
        return ans;
    }
    void setCount(int ct, int pc) {
        int start = --ct * 10, end = start + 10;
        for (int i = start; i < end; i++) {
            if (((pc >> (i - start)) & 1) == 1) {
                cnt |= (1 << i);
            } else {
                cnt &= ~(1 << i);
            }
        }
    }
};

Python 代码:

class ParkingSystem:
    def __init__(self, big: int, medium: int, small: int):
        self.cnt = 0
        for i in range(30):
            cur = 0
            if i < 10:
                cur = (big >> i) & 1
            elif i < 20:
                cur = (medium >> (i - 10)) & 1
            else:
                cur = (small >> (i - 20)) & 1
            if cur == 1:
                self.cnt |= (1 << i)

    def addCar(self, ct: int) -> bool:
        cur = self.countOfType(ct)
        if cur > 0:
            self.setCount(ct, cur - 1)
            return True
        return False
    
    def countOfType(self, ct):
        start = (ct - 1) * 10
        ans = 0
        for i in range(start, start + 10):
            if (self.cnt >> i) & 1:
                ans |= (1 << (i - start))
        return ans

    def setCount(self, ct, pc):
        start = (ct - 1) * 10
        for i in range(start, start + 10):
            if (pc >> (i - start)) & 1:
                self.cnt |= (1 << i)
            else:
                self.cnt &= ~(1 << i)
  • 时间复杂度:
  • 空间复杂度:

最后

巨划算的 LeetCode 会员优惠通道目前仍可用 ~

使用福利优惠通道 leetcode.cn/premium/?promoChannel=acoier,年度会员 有效期额外增加两个月,季度会员 有效期额外增加两周,更有超大额专属 🧧 和实物 🎁 福利每月发放。

我是宫水三叶,每天都会分享算法知识,并和大家聊聊近期的所见所闻

欢迎关注,明天见。

更多更全更热门的「笔试/面试」相关资料可访问排版精美的 合集新基地 🎉🎉

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值