发量不减

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
上一页 1 2 3 4 5 6 ··· 68 下一页

2024年1月7日

摘要: //二分查找 #include<iostream> #include<string> #include<vector> #include<algorithm> using namespace std; int search(vector<int>& nums, int target) { int l 阅读全文
posted @ 2024-01-07 17:39 不是孩子了 阅读(2) 评论(0) 推荐(0) 编辑

摘要: //三数之和 #include<iostream> #include<string> #include<vector> #include<algorithm> using namespace std; vector<vector<int>> threeSum(vector<int>& nums) { 阅读全文
posted @ 2024-01-07 16:00 不是孩子了 阅读(2) 评论(0) 推荐(0) 编辑

摘要: //最接近的三数之和 #include<iostream> #include<string> #include<vector> #include<cmath> #include<algorithm> using namespace std; //双指针 int threeSumClosest(vec 阅读全文
posted @ 2024-01-07 15:14 不是孩子了 阅读(2) 评论(0) 推荐(0) 编辑

2024年1月5日

摘要: 法一:暴力解法(超时) int maxArea(vector<int>& height) { int max = 0; for(int i = 0; i<height.size(); i++){ for(int j = i+1; j<height.size(); j++){ int minHeigh 阅读全文
posted @ 2024-01-05 15:45 不是孩子了 阅读(2) 评论(0) 推荐(0) 编辑

2023年5月5日

摘要: 这里是thymeleaf的便利,想要在vue的@click中的函数中传递thymeleaf便利的数据。 需要在@click中加上th交给thymeleaf托管,然后再方法前后加上“|”即可 阅读全文
posted @ 2023-05-05 00:14 不是孩子了 阅读(18) 评论(0) 推荐(0) 编辑

2023年3月1日

摘要: 支付宝支付成功后有一个同步通知和异步通知 在同步通知里面我们进行了支付成功后跳转到订单列表的页面跳转 支付宝还会给我们异步通知,发送消息。但是我们的地址域名是在本机的host文件配置的,只是起到一个模拟作用。如果还用http://order.gulimall.com/alipay/notify,支付 阅读全文
posted @ 2023-03-01 21:15 不是孩子了 阅读(103) 评论(0) 推荐(0) 编辑

2023年2月26日

摘要: ![](https://img2023.cnblogs.com/blog/2506674/202302/2506674-20230226204347115-495402348.png) ![](https://img2023.cnblogs.com/blog/2506674/202302/2506674-20230226204356918-1628880164.png) ![](https://i 阅读全文
posted @ 2023-02-26 20:44 不是孩子了 阅读(17) 评论(0) 推荐(0) 编辑

摘要: https://blog.csdn.net/qq_41731316/article/details/119803796 阅读全文
posted @ 2023-02-26 17:12 不是孩子了 阅读(15) 评论(0) 推荐(0) 编辑

2023年2月24日

摘要: 1、导入依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-amqp</artifactId> </dependency> 2、编写连接rabbitmq的配置 3、开启 阅读全文
posted @ 2023-02-24 00:05 不是孩子了 阅读(17) 评论(0) 推荐(0) 编辑

2023年2月23日

摘要: 1、使用RabbitMq实现延时队列方法1 2、基于我们的业务我们使用下面这种方式实现延时队列 1、导入依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-amqp</ 阅读全文
posted @ 2023-02-23 19:02 不是孩子了 阅读(47) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 ··· 68 下一页