// 选中父节点时,选中所有子节点 function getChildNodeIdArr(node) { var ts = []; if (node.nodes) { for (x in node.nodes) { ts.push(node.nodes[x].nodeId); if (node.no ...
分类:
其他好文 时间:
2020-05-06 14:03:28
阅读次数:
80
Django在处理文件上传时,文件数据被打包封装在request.FILES中。 一、简单上传 首先,写一个form模型,它必须包含一个FileField: 处理这个表单的视图将在 中收到文件数据,可以用 来获取上传文件的具体数据,其中的键值‘file’是根据 的变量名来的。 注意: 只有在请求方法 ...
分类:
Web程序 时间:
2020-05-06 10:29:52
阅读次数:
80
这比赛什么鬼名字... 比赛网站:https://ctf.show/challenges Reverse 逆向_签到 IDA64打开,按F5。 看标箭头的几处,得知v6要等于0才正确。v6的运算是和后面的一串式子进行按位或,而0或0才能得到0,所以后面的一串异或式子的结果为0,那么因为异或的可逆运算 ...
分类:
其他好文 时间:
2020-05-05 00:59:16
阅读次数:
192
Given a complete binary tree, count the number of nodes. Note: Definition of a complete binary tree from Wikipedia: In a complete binary tree every le ...
分类:
其他好文 时间:
2020-05-04 15:47:22
阅读次数:
55
题目: 解答: 1 class Solution { 2 public: 3 vector<int> digits(int n) 4 { 5 vector<int> res; 6 while (n > 0) 7 { 8 res.push_back(n % 10); 9 n /= 10; 10 } 1 ...
分类:
其他好文 时间:
2020-05-04 13:39:01
阅读次数:
64
题目: 解法: 方法一:先反转整个字符串,然后在反转每个单词。 方法二:迭代器。 1 class Solution { 2 public: 3 4 string reverseWords(string s) 5 { 6 string::iterator it=s.begin(), bg=it; 7 ...
分类:
其他好文 时间:
2020-05-03 21:50:46
阅读次数:
67
题目: 解答: 1 class Solution { 2 public: 3 void reverseString(vector<char>& s) 4 { 5 if (s.size() <= 1) 6 { 7 return; 8 } 9 10 int beg = 0; 11 int end = s ...
分类:
其他好文 时间:
2020-05-03 20:47:39
阅读次数:
80
25. K 个一组翻转链表 题目来源: "https://leetcode cn.com/problems/reverse nodes in k group" 题目 给你一个链表,每 k 个节点一组进行翻转,请你返回翻转后的链表。 k 是一个正整数,它的值小于或等于链表的长度。 如果节点总数不是 k ...
分类:
编程语言 时间:
2020-05-03 20:32:17
阅读次数:
56
题意:http://acm.hdu.edu.cn/showproblem.php?pid=6513 你最多选两个矩阵反转,问你最后的情况数。 思路:https://www.cnblogs.com/asdfsag/p/10753244.html 很到位了。 const int N=(int)1e2+1 ...
分类:
其他好文 时间:
2020-05-03 18:48:10
阅读次数:
71
Given a non-empty binary tree, find the maximum path sum. For this problem, a path is defined as any sequence of nodes from some starting node to any ...
分类:
其他好文 时间:
2020-05-03 14:27:36
阅读次数:
67