Go最新【LeetCode刷题日记】[641(1),2024年最新覆盖所有面试知识点

12 篇文章 0 订阅
12 篇文章 0 订阅

img
img

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化的资料的朋友,可以添加戳这里获取

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

        return -1;
    }
    // 当 rear 为 0 时防止数组越界
    return arr[(rear - 1 + capacity) % capacity];
}

/** Checks whether the circular deque is empty or not. */
bool isEmpty() {
    return front == rear;
}

/** Checks whether the circular deque is full or not. */
bool isFull() {
    // 注意:这个设计是非常经典的做法
    return (rear + 1) % capacity == front;
}

};

/**

  • Your MyCircularDeque object will be instantiated and called as such:
  • MyCircularDeque* obj = new MyCircularDeque(k);
  • bool param_1 = obj->insertFront(value);
  • bool param_2 = obj->insertLast(value);
  • bool param_3 = obj->deleteFront();
  • bool param_4 = obj->deleteLast();
  • int param_5 = obj->getFront();
  • int param_6 = obj->getRear();
  • bool param_7 = obj->isEmpty();
  • bool param_8 = obj->isFull();
    */

C



typedef struct NODE{
int val;
struct NODE* pre;
struct NODE* next;
} MyNode;

typedef struct {
int size;
int cursize;
MyNode* head;
MyNode* tail;
} MyCircularDeque;

/** Initialize your data structure here. Set the size of the deque to be k. */

MyCircularDeque* myCircularDequeCreate(int k) {
MyCircularDeque* MyDeque = calloc(k, sizeof(MyCircularDeque));
MyDeque->head = NULL;
MyDeque->tail = NULL;
MyDeque->size = k;
MyDeque->cursize = 0;
return MyDeque;
}

/** Adds an item at the front of Deque. Return true if the operation is successful. /
bool myCircularDequeInsertFront(MyCircularDeque
obj, int value) {
if (obj->size == obj->cursize) {
return false;
}
MyNode* node = calloc(1,sizeof(MyNode));
node->val = value;
if (obj->head == NULL) {
obj->head = node;
obj->tail = node;
} else {
obj->head->pre = node;
node->next = obj->head;
node->pre = NULL;
obj->head = node;
}
obj->cursize++;
return true;
}

/** Adds an item at the rear of Deque. Return true if the operation is successful. /
bool myCircularDequeInsertLast(MyCircularDeque
obj, int value) {
if (obj->size == obj->cursize) {
return false;
}
MyNode* node = calloc(1,sizeof(MyNode));
node->val = value;
if (obj->head == NULL) {
obj->head = node;
obj->tail = node;
} else {
node->next = NULL;
obj->tail->next = node;
node->pre = obj->tail;
node->next = NULL;
obj->tail = node;
}
obj->cursize++;
return true;
}

/** Deletes an item from the front of Deque. Return true if the operation is successful. /
bool myCircularDequeDeleteFront(MyCircularDeque
obj) {
if (obj->cursize == 0) {
return false;
}
if (obj->cursize == 1) {
free(obj->head);
obj->head = NULL;
obj->tail = NULL;
} else {
MyNode* temp = obj->head;
obj->head = temp->next;
obj->head->pre = NULL;
free(temp);
}
obj->cursize–;
return true;
}

/** Deletes an item from the rear of Deque. Return true if the operation is successful. /
bool myCircularDequeDeleteLast(MyCircularDeque
obj) {
if (obj->cursize == 0) {
return false;
}
if (obj->cursize == 1) {
free(obj->head);
obj->head = NULL;
obj->tail = NULL;
} else {
MyNode* temp = obj->tail;
obj->tail = temp->pre;
obj->tail->next = NULL;
free(temp);
}
obj->cursize–;
return true;
}

/** Get the front item from the deque. /
int myCircularDequeGetFront(MyCircularDeque
obj) {
if (obj->cursize == 0) {
return -1;
}
return obj->head->val;
}

/** Get the last item from the deque. /
int myCircularDequeGetRear(MyCircularDeque
obj) {
if (obj->cursize == 0) {
return -1;
}
return obj->tail->val;
}

/** Checks whether the circular deque is empty or not. /
bool myCircularDequeIsEmpty(MyCircularDeque
obj) {
if (obj->cursize == 0) {
return true;
}
return false;
}

/** Checks whether the circular deque is full or not. /
bool myCircularDequeIsFull(MyCircularDeque
obj) {
if (obj->size == obj->cursize) {
return true;
}
return false;
}

void myCircularDequeFree(MyCircularDeque* obj) {
if (obj == NULL) {
return ;
}
MyNode* temp = obj->head;
while (temp) {
MyNode* temp1 = temp;
temp = temp->next;
free(temp1);
}
free(obj);
obj = NULL;
}

/**

  • Your MyCircularDeque struct will be instantiated and called as such:

  • MyCircularDeque* obj = myCircularDequeCreate(k);

  • bool param_1 = myCircularDequeInsertFront(obj, value);

  • bool param_2 = myCircularDequeInsertLast(obj, value);

  • bool param_3 = myCircularDequeDeleteFront(obj);

  • bool param_4 = myCircularDequeDeleteLast(obj);

  • int param_5 = myCircularDequeGetFront(obj);

  • int param_6 = myCircularDequeGetRear(obj);

  • bool param_7 = myCircularDequeIsEmpty(obj);

  • bool param_8 = myCircularDequeIsFull(obj);

  • myCircularDequeFree(obj);
    */

img
img
img

既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上Go语言开发知识点,真正体系化!

由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新

如果你需要这些资料,可以戳这里获取

dpKnu-1715889741896)]

既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上Go语言开发知识点,真正体系化!

由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新

如果你需要这些资料,可以戳这里获取

  • 13
    点赞
  • 25
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值