自己的Todo List, 每天提醒自己:原地踏步就是在退步,时刻未雨绸缪,准备着!

此篇文章记录自己的代办事项,并非技术文章。

一、源码解读

(1) sidecar, eureka网关,服务注册发现源码解读。

 

 

 

 

php内存管理

https://www.cnblogs.com/beili/p/9811255.html

https://www.cnblogs.com/xinghun/p/5660051.html

https://www.cnblogs.com/loveyouyou616/p/5415576.html

https://www.cnblogs.com/zcy_soft/archive/2011/04/12/2013223.html

 

 

ModelForm验证

https://blog.csdn.net/Burgess_zheng/article/details/86653931

https://blog.csdn.net/Burgess_zheng/article/details/86663325

Raft协议

 

python 模板语法

https://www.jb51.net/article/69507.htm

form自定义校验逻辑

https://www.cnblogs.com/sch01ar/p/11498962.html

 

git config --global user.name "sunwenhua"

git config --global credential.helper store

 

python关联查询judge form

nginx proxy_pass 中缓存针对java打包在里边的css无效,可以研究下

python logging模块

https://www.cnblogs.com/Nicholas0707/p/9021672.html

 

celery

https://www.jianshu.com/p/745d469652b9

https://github.com/celery/django-celery-beat

celery  apschedule  schedule对比 https://www.jianshu.com/p/338c0a96a60b

 

gluster

fastdfs csdn blog文章完善

python

如何判断字符串,字符串和byte转换,

nginx

https://blog.csdn.net/uxiAD7442KMy1X86DtM3/article/details/103004452?ops_request_misc=%7B%22request%5Fid%22%3A%22158324831319725256709817%22%2C%22scm%22%3A%2220140713.130056874..%22%7D&request_id=158324831319725256709817&biz_id=0&utm_source=distribute.pc_search_result.none-task

https://blog.csdn.net/uxiAD7442KMy1X86DtM3/article/details/104471054?ops_request_misc=%7B%22request%5Fid%22%3A%22158324831319725256709817%22%2C%22scm%22%3A%2220140713.130056874..%22%7D&request_id=158324831319725256709817&biz_id=0&utm_source=distribute.pc_search_result.none-task

https://blog.csdn.net/uxiAD7442KMy1X86DtM3/article/details/103516040?ops_request_misc=%7B%22request%5Fid%22%3A%22158324831319725256709817%22%2C%22scm%22%3A%2220140713.130056874..%22%7D&request_id=158324831319725256709817&biz_id=0&utm_source=distribute.pc_search_result.none-task

 

 

一、Todo

  • 7、mongo接口的预学习 MongoDB Cloud Manager
  • 10、jquery获取父子元素的问题
  • 11、TCP协议探究:https://www.cnblogs.com/linzhanfly/p/9960932.html
  • 12、vue入门,python入门, JSP语法
  • 13、分库分表,glusterfs
  • 15、django原理
  • 17、linux常用命令

http://www.cnblogs.com/peida/archive/2012/12/20/2825837.html

https://www.visual-paradigm.com/cn/guide/uml-unified-modeling-language/what-is-uml/

 

https://blog.csdn.net/lufeisan/article/details/53339991

 

 

二、札记

·1、bootstrap table单词换行问题

.td-line {
  max-width: 200px;
 word-wrap: break-word;
 word-break: break-all;
 white-space: pre-line;
}

 

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
下面是使用C语言实现的单链表原地逆转的代码: ```c #include <stdio.h> #include <stdlib.h> struct Node { int data; struct Node* next; }; void reverseList(struct Node** head) { struct Node* prev = NULL; struct Node* current = *head; struct Node* next = NULL; while (current != NULL) { next = current->next; current->next = prev; prev = current; current = next; } *head = prev; } void printList(struct Node* head) { while (head != NULL) { printf("%d ", head->data); head = head->next; } printf("\n"); } void push(struct Node** headRef, int newData) { struct Node* newNode = (struct Node*)malloc(sizeof(struct Node)); newNode->data = newData; newNode->next = *headRef; *headRef = newNode; } int main() { struct Node* head = NULL; push(&head, 3); push(&head, 2); push(&head, 1); printf("Original list: "); printList(head); reverseList(&head); printf("Reversed list: "); printList(head); return 0; } ``` 在上述代码中,我们首先定义了一个 `Node` 结构体来表示单链表中的每个节点,包括节点的值和指向下一个节点的指针。然后我们定义了 `reverseList` 函数来实现原地逆转单链表的功能。该函数接受一个指向指针的指针 `head`,这是因为我们需要通过指针来修改单链表的头节点,所以我们传递指向指针的指针。在函数内部,我们使用三个指针 `prev`、`current` 和 `next` 来依次遍历单链表,并将每个节点的指针指向前一个节点,从而实现原地逆转单链表的目的。 最后,我们定义了一个 `push` 函数来添加新节点到单链表的头部,并定义了 `printList` 函数来打印单链表中所有节点的值。在 `main` 函数中,我们创建了一个包含三个节点的单链表,并调用 `reverseList` 函数来原地逆转该单链表,最后打印出原始和逆转后的单链表。

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值