51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#Etc
ExpandableListView getChildView 不执行,不显示子列表
原因很简单: 在GroupView里面不要加入button等可点击空间,否则和点击Groupview展开相冲突。去掉就好了getGroupView...
代码星球
·
2021-02-15
ExpandableListView
getChildView
执行
显示
列表
thinkphp fetchSql
fetchSql() 这个执行返回的是sql的语句不是执行结果。可以用于方便调试sql $result=M('User')->fetchSql(true)->find(1);输出result结果为: SELECT*FROMthink_userwhereid=1...
代码星球
·
2021-02-15
thinkphp
fetchSql
Oracle 遍历游标的四种方式(for、fetch、while、BULK COLLECT)
1.情景展示 Oracle遍历游标的三种方式(for、fetch、while、bulkcollect+forall)2.问题分析 我们可以把游标想象成一张表,想要遍历游标,就要取到游标的每行数据,所以问题的关键就成了:如何取到行数据?3.解决方案 方式一:FOR循环(推荐使用) 变形一:遍历显式游标...
代码星球
·
2021-02-14
Oracle
遍历
标的
四种
方式
阿里云centOS7.4 nginx: [emerg] "server" directive is not allowed here in /etc/nginx/vhost/xxxxxx.conf:2
里云centOS7.4配置多个站点遇到的问题nginx:[emerg]"server"directiveisnotallowedherein/etc/nginx/vhost/xxxxxx.conf:2这个错误好尴尬,费了几个小时去解决,小白呀没办法先贴下/etc/nginx/nginx.conf的内容worker_pr...
代码星球
·
2021-02-14
nginx
阿里
centOS7.4
emerg
quotserver
【LeetCode】【Python】Linked List Cycle
Givenalinkedlist,determineifithasacycleinit.Followup:Canyousolveitwithoutusingextraspace?思路:笨办法是每一个节点再开辟一个属性存放是否訪问过,这样遍历一遍就可以知道是否有环。但为了不添加额外的空间。能够设置两个指针。一个一次走一步...
代码星球
·
2021-02-13
LeetCode
Python
Linked
List
Cycle
排颜色问题——数组 leetcode lintcode
给一个数组,而且数组里面元素的值仅仅可能是0,1,2,然后如今把这个数组排序。第二种表述: 现有n个红白蓝三种不同颜色的小球,乱序排列在一起,请通过两两交换随意两个球,使得从左至右,依次是一些红球、一些白球、一些蓝球。採用高速排序partition的思想,用两个指针将三种颜色间隔开。以下引用此处内容 ...
代码星球
·
2021-02-13
颜色
问题
数组
leetcode
lintcode
LeetCode --- 57. Insert Interval
Givenasetofnon-overlappingintervals,insertanewintervalintotheintervals(mergeifnecessary).Youmayassumethattheintervalswereinitiallysortedaccordingtotheirstarttim...
代码星球
·
2021-02-13
LeetCode
Insert
Interval
[Leetcode]Reverse Linked List II
//将list存入vector。然后翻转中间部分数列classSolution{public: ListNode*reverseBetween(ListNode*head,intm,intn){ vector<ListNode*>node;...
代码星球
·
2021-02-13
Leetcode
Reverse
Linked
List
II
python 将os.getcwd()获取路径中的替换成\
通过os.getcwd()获取的路径为:D:Autoestmobule,实际需要修改为:D://Auto//test//mobule代码实现如下:importosb=os.getcwd()c=r"\".join(c.split("\))printc#获取到的形式就为:D://Auto//test//mobule&nbs...
代码星球
·
2021-02-13
python
os.getcwd
获取
路径
中的
python读取剪贴板报错 pywintypes.error: (1418, 'GetClipboardData', 'xcfxdfxb3xccxc3xbbxd3xd0xb4xf2xbfxaaxb5x
在封装读取剪贴板的时候,执行测试代码时遇到个错误:pywintypes.error:(1418,'GetClipboardData','xcfxdfxb3xccxc3xbbxd3xd0xb4xf2xbfxaaxb5x 代码:#encoding=utf-8importwin32clipboardaswimpor...
代码星球
·
2021-02-13
python
读取
剪贴板
报错
pywintypes.error
LeetCode: 63. Unique Paths II(Medium)
1.原题链接https://leetcode.com/problems/unique-paths-ii/description/...
代码星球
·
2021-02-12
LeetCode
Unique
Paths
II
Medium
LeetCode: 62. Unique Paths(Medium)
1.原题链接https://leetcode.com/problems/unique-paths/description/2.题目要求给定一个m*n的棋盘,从左上角的格子开始移动,每次只能向右或向下移动一格,直至右下角的格子。返回所有不同路径的总数。注意:m和n都不超过1003.解题思路 ...
代码星球
·
2021-02-12
LeetCode
Unique
Paths
Medium
LeetCode: 61. Rotate List(Medium)
1.原题链接https://leetcode.com/problems/rotate-list/description/2.题目要求给出一个链表的第一个结点head和正整数k,然后将从右侧开始数第k个结点之后的链表与之前的链表交换位置,例如3.解题思路(1)首先要注意head结点不是指头结点,而是指第一个结点;(2)当...
代码星球
·
2021-02-12
LeetCode
Rotate
List
Medium
LeetCode: 60. Permutation Sequence(Medium)
1.原题链接https://leetcode.com/problems/permutation-sequence/description/2.题目要求给出整数n和k,k代表从1到n的整数所有排列序列中的第k个序列,返回String类型的第k个序列3.解题思路 首先我们要知道这个序列是按照什么规律排列下去的,假...
代码星球
·
2021-02-12
LeetCode
Permutation
Sequence
Medium
LeetCode: 59. Spiral Matrix II(Medium)
1.原题链接https://leetcode.com/problems/spiral-matrix-ii/description/2.题目要求给定一个正整数n,求出从1到n平方的螺旋矩阵。例如n为3,构成的螺旋矩阵如下图所示3.解题思路该题与54题SpiralMatrix的解题思路大致相同,同样是一个while循环内,...
代码星球
·
2021-02-12
LeetCode
Spiral
Matrix
II
Medium
首页
上一页
...
14
15
16
17
18
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他