上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 119 下一页
摘要: /* * @lc app=leetcode.cn id=416 lang=cpp * * [416] 分割等和子集 * * https://leetcode-cn.com/problems/partition-equal-subset-sum/description/ * * algorithms 阅读全文
posted @ 2021-04-29 17:31 鸭子船长 阅读(131) 评论(0) 推荐(0)
摘要: /* * @lc app=leetcode.cn id=516 lang=cpp * * [516] 最长回文子序列 * * https://leetcode-cn.com/problems/longest-palindromic-subsequence/description/ * * algor 阅读全文
posted @ 2021-04-29 16:23 鸭子船长 阅读(121) 评论(0) 推荐(0)
摘要: /* * @lc app=leetcode.cn id=5 lang=cpp * * [5] 最长回文子串 * * https://leetcode-cn.com/problems/longest-palindromic-substring/description/ * * algorithms * 阅读全文
posted @ 2021-04-29 15:31 鸭子船长 阅读(159) 评论(0) 推荐(0)
摘要: 查看动态库的加载路径 patchelf --print-rpath so $ORIGIN:$ORIGIN/lib 在 低版本 libc 库运行高版本 libc 库编译的程序 这篇博客中我描述了使用 patchelf 来修改动态库链接器的方法,在本篇文章中,我完整的列举下 patchelf 的功能,并 阅读全文
posted @ 2021-04-29 11:37 鸭子船长 阅读(3424) 评论(0) 推荐(0)
摘要: 动态库加载器可以通过运行一些动态链接的程序来间接调用(在这种情况中,不需要向动态库加载器指定任何命令行参数,对于 ELF 文件,动态库链接器的路径存储在将被执行的程序的 .interp section 中)或直接通过 /lib/ld-linux-so.* xx 来调用。 ld.so 与 ld-lin 阅读全文
posted @ 2021-04-29 11:35 鸭子船长 阅读(386) 评论(0) 推荐(0)
摘要: /* * @lc app=leetcode.cn id=712 lang=cpp * * [712] 两个字符串的最小ASCII删除和 * * https://leetcode-cn.com/problems/minimum-ascii-delete-sum-for-two-strings/desc 阅读全文
posted @ 2021-04-28 17:48 鸭子船长 阅读(89) 评论(0) 推荐(0)
摘要: /* * @lc app=leetcode.cn id=583 lang=cpp * * [583] 两个字符串的删除操作 * * https://leetcode-cn.com/problems/delete-operation-for-two-strings/description/ * * a 阅读全文
posted @ 2021-04-28 17:01 鸭子船长 阅读(127) 评论(0) 推荐(0)
摘要: /* * @lc app=leetcode.cn id=354 lang=cpp * * [354] 俄罗斯套娃信封问题 * * https://leetcode-cn.com/problems/russian-doll-envelopes/description/ * * algorithms * 阅读全文
posted @ 2021-04-27 20:33 鸭子船长 阅读(107) 评论(0) 推荐(0)
摘要: /* * @lc app=leetcode.cn id=300 lang=cpp * * [300] 最长递增子序列 * * https://leetcode-cn.com/problems/longest-increasing-subsequence/description/ * * algori 阅读全文
posted @ 2021-04-26 15:28 鸭子船长 阅读(113) 评论(0) 推荐(0)
摘要: 给定编号从 0 到 n-1 的 n 个节点和一个无向边列表(每条边都是一对节点),请编写一个函数来计算无向图中连通分量的数目。 示例 1: 输入: n = 5 和 edges = [[0, 1], [1, 2], [3, 4]] 0 3 | | 1 2 4 输出: 2示例 2: 输入: n = 5 阅读全文
posted @ 2021-04-24 20:29 鸭子船长 阅读(541) 评论(0) 推荐(0)
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 119 下一页