今天有吐槽
终于回归刷题了。昨天下午又开大会被批斗,心情不好晚上浪浪的。由此有了舸的故事,还有稻香湖。
顺势发了朋友圈
- 浮夸褪去之后,任何人终究都是孤独的。
- 世界上唯一不变的就是变化。
- 艰难和无助本来就是Todo的常态。
该回家了,或者好好睡一大觉
我在愤青
我很少矫情悲观,昨天是真忍不住了。就一句话,艰难固然有,公平何处寻?
当然,只要出去吃和浪,心情立即好。
今中午敏和鱼水饺,巨爱,等回青岛继续。
大周五晚上被挤压紧急干活加班,底层人民的劳动力就理所当然被默认为成天就得围着工作转才合理,恨不得时刻待命。而又有谁会去珍惜你的劳动成果呢?辛苦的结果更多是无用功︶︿︶我希望管理能走向正轨。
刷题:如何删除当前链表节点
237.Delete Node in a Linked List
Write a function to delete a node (except the tail) in a singly linked list, given only access to that node.
Supposed the linked list is 1 -> 2 -> 3 -> 4 and you are given the third node with value 3, the linked list should become 1 -> 2 -> 4 after calling your function.
链表操作我不熟
用手机刷题,鼓捣了很久才AC,而且还看了别人的博客园提示。有点像脑筋急转弯,代码很短,明了。
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
void deleteNode(ListNode* node) {
//不用考虑尾结点
node -> val= node -> next -> val;
node -> next = node -> next -> next;
}
};
简书APP在手机上不能贴代码
我这是2016-07-26 15:49:59重新在电脑是加贴的代码,希望以后App能排除故障。
❤️我到底喜欢什么?
看到这一天的上面的日记,刚刚一瞬间有个感悟:我喜欢什么?我不确定。但至少从我喜欢刷题这件事看,我喜欢靠大脑解决问题的感觉。
——End——