This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @author pwxcoo | |
* @email [email protected] | |
* @create date 2018-09-11 10:30:47 | |
* @modify date 2018-09-11 13:28:17 | |
* @desc LRU cache implemented by c++ | |
*/ | |
#ifndef _LRUCACHE_INCLUDED_ | |
#define _LRUCACHE_INCLUDED_ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int findKthSmallest(int vec1[], int n1, int vec2[], int n2, int k) | |
{ | |
if (n1 == 0) | |
return vec2[k - 1]; | |
else if (n2 == 0) | |
return vec1[k - 1]; | |
if (k == 1) | |
return vec1[0] < vec2[0] ? vec1[0] : vec2[0]; | |
int idx1 = n1 * 1.0 / (n1 + n2) * (k - 1); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def check(frame, p): | |
n = len(p) - 1 | |
fcs = frame[0: n] | |
for i in range(n, len(frame)): | |
fcs += frame[i] | |
fcs = bin(int(fcs, 2))[2:] | |
if (len(fcs) < len(p)): | |
continue | |
fcs = bin(int(fcs, 2) ^ int(p, 2))[2:] | |
while len(fcs) < n: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Generated by gfwlist2pac | |
// https://github.com/clowwindy/gfwlist2pac | |
var domains = { | |
"stackoverflow.com": 1, | |
"w3schools.com": 1, | |
"codeforces.com": 1, | |
"disqus.com": 1, | |
"onedrive.live.com": 1, | |
"quora.com": 1, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://cdn.bootcss.com/mathjax/2.7.4/MathJax.js?config=default"> | |
MathJax.Hub.Config({ | |
tex2jax: { | |
inlineMath: [['$','$'],["\\(","\\)"]], | |
displayMath: [['\\[','\\]'], ['$$','$$']], | |
}, | |
}); | |
</script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Net; | |
using System.Net.Sockets; | |
using System.Text; | |
using System.Threading; | |
using System.Threading.Tasks; | |
namespace ClientDemo |
NewerOlder