由买买提看人间百态

topics

全部话题 - 话题: tailing
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
l*t
发帖数: 10829
1
来自主题: Animals版 - [嫩鸟] Scissor-tailed Flycatcher
这个是不是未成年的Scissor-tailed Flycatcher就不知道了,成年的好象是没有短尾
巴的。
我看到的3只基本都这样(2只在一块,第3只在另一地,相隔几英里)。
这一带一位观鸟牛人在7月底来过此地,也看到这样的鸟,把它鉴定为Western
Kingbird,所以我就跟风了,呵呵
l*t
发帖数: 10829
2
来自主题: Animals版 - [嫩鸟] Scissor-tailed Flycatcher
我第一次见到Scissor-tailed Flycatcher是5月份在海边。
没想到我的家附近会有这么多
I***i
发帖数: 14557
3
来自主题: Animals版 - [嫩鸟] Scissor-tailed Flycatcher
你这么一说,我也觉得像Scissor-tailed Flycatcher了
l*t
发帖数: 10829
4
来自主题: Animals版 - [嫩鸟] Scissor-tailed Flycatcher
** 2013.8.20更正: 这不是Western Kingbird. 而是Scissor-tailed Flycatcher的未
成鸟.
l*t
发帖数: 10829
5
来自主题: Animals版 - [嫩鸟] Scissor-tailed Flycatcher
是Scissor-tailed Flycatcher吗?
现在很多
l*t
发帖数: 10829
6
来自主题: Animals版 - 春天归来的Scissor-tailed Flycatcher
去年最后一次看见Scissor-tailed Flycatcher是在11月初,之后,他们就飞到南边过
冬去了。一呆就是几个月。现在春暖花开了,我在海边又看见它们了...
m******h
发帖数: 5753
7
来自主题: _Fly_Fishing_Club版 - 请问: 拣了一只red tail, 怎么处理一下
湖边死了一只 Red Tail Hawk, 刚死不久,很完整,拿回来了, 想拔点毛绑fly, 需
要特殊处理吗?有什么特别好的毛要保留?如果没价值,就直接埋桃树下了。
V***b
发帖数: 3419
8
来自主题: _Auto_Fans版 - 周末跑了Tail of the Dragon
我一直加Shell V-Power,比厂家MPG多1.5,前提是猥琐开。
Tail of the Dragon有限速没?1531拍的不错。
e***i
发帖数: 3894
9
来自主题: _Auto_Fans版 - 周末跑了Tail of the Dragon
你这Tail of Dragon跑的不快啊,我当时是从GA方向进山,当天傍晚半黑,马上要下雨
,摩托都下山躲雨了,只有我自己跑,跑的很爽……
我上次去这段蓝领公路我也跑了,天气也是这样的,声音真不错哈,我的车隧道里轰油
门也没什么声。
e***i
发帖数: 3894
10
来自主题: _Auto_Fans版 - 周末跑了Tail of the Dragon
哈哈我也遇到这问题了啊,进山之前天黑赶路,在28号公路上一路狂飙啊。
等真正上了tail of dragon跑了一半我老婆就要吐了……
w*******y
发帖数: 60932
w*******y
发帖数: 60932
w*******y
发帖数: 60932
w*******y
发帖数: 60932
w*******y
发帖数: 60932
15
Outback Steakhouse:
http://www.outback.com/pressroom/pr_110525.aspx
is currently having their Special Sirloin, served w/ a grilled lobster
tail and a Baked potato for $14.99!
Available nationwide.
w*******y
发帖数: 60932
16
Meritline
5-LED Rear Tail Light for Bicycle with Mounting Accessories and Fluorescent
Green Safety Band
$0.99 with code MLCK0802NL1
free shipping
w*******y
发帖数: 60932
d*****r
发帖数: 39446
18
来自主题: _ImperfectDads版 - [通知] Tails 退出本俱乐部
【此篇文章是由自动发信系统所张贴】
Tails 已经退出本俱乐部, 特此通知.
d*****r
发帖数: 39446
19
来自主题: _ImperfectDads版 - [通知] Tails 退出本俱乐部
【此篇文章是由自动发信系统所张贴】
Tails 已经退出本俱乐部, 特此通知.
r******r
发帖数: 700
20
我当年的 homework,翻出来了。另一个 homework project, 帮我找到了第一个工作。
#ifndef LIST_H
#define LIST_H
#include
#include
#include
#include "node.h"
using namespace std;
/*=========================================================================*/
/**
* Implementation of a List ADT using a doubly-linked list.
*
* @version 1.0 2/25/05
*/
/*.........................................................................*/
/**
* Definition of exception handling class
*/
class ListEmpty : public ... 阅读全帖
f**********3
发帖数: 295
21
来自主题: JobHunting版 - leetcode上的Sort List那道题
public class Solution {
public ListNode sortList(ListNode head) {
if (head == null || head.next == null) return head;
ListNode tail = head.next;
while (tail.next != null) {tail = tail.next;}
HeadTail ret = sort(head, tail);
return ret.head;
}

class HeadTail {
ListNode head;
ListNode tail;
public HeadTail(ListNode head, ListNode tail) {
this.head = head;
this.tail = tail;
}
}

... 阅读全帖
c********s
发帖数: 817
22
This is my implementation for these two functions, and a driver to run them.
cat string_reverse.c
#include
#include
#include
void swap(char* c1, char* c2);
// -----------------
void string_reverse1(char* string) {
if (string == NULL)
return;
char* head = string;
char* tail = head;
// find the tail
while (*tail) ++tail;
--tail;
// while loop to do the swap
while (head < tail)
swap(head++, tail--);
}
// -----------------
// the caller of this function is res... 阅读全帖
H****n
发帖数: 26
23
如题,请大师们帮帮忙,编译器现在主要报错在静态变量打初始化部分,我百思不得其
姐。
#include
using namespace std;
class link{
private:
string ss;
link *prev;
link *next;
static int count; //the counter to show how many nodes
int pos; //the position to insert node
static link* fp; //a temp node for insertion
static link* head;
static link* tail;
public:
link(string s1="", int i=0):ss(s1),pos(i){
if(head==NULL&&tail==NULL){
... 阅读全帖
D********g
发帖数: 650
24
This is a pretty tricky question, especially for the loop handling. Here is
my java code, tested with looped case and non-looped case.
public static class DLLNode {
DLLNode prev;
DLLNode next;
int value;

public DLLNode(int value) {
this.value = value;
prev = null;
next = null;
}
}
static DLLNode dummy = new DLLNode(-1);
static DLLNode loopDummy = new DLLNode(-2);
static void printLL(final DLLN... 阅读全帖
c*******7
发帖数: 438
25
来自主题: JobHunting版 - 请教iterative merge sort list的代码
/**
* Definition for singly-linked list.
* class ListNode {
* int val;
* ListNode next;
* ListNode(int x) {
* val = x;
* next = null;
* }
* }
*/
public class Solution {
public ListNode sortList(ListNode head) {

if(head == null) {
return null;
}
ListNode[] heads = new ListNode[100];
int[] counts = new int[100];
heads[0] = head;
counts[0] = 1;

ListNode next = head.next;
i... 阅读全帖
A*******e
发帖数: 2419
26
谢谢提醒。是我看错了。这个和max histogram area不一样。
写了一个,是不是有点长?谁有更简洁的写法?
class Solution {
public:
int maxArea(vector& height) {
int head = 0;
int tail = height.size() - 1;
int result = GetArea(height, head, tail);
while (head < tail) {
if (height[head] < height[tail]) {
int next_head = head + 1;
while (next_head < height.size() &&
height[next_head] <= height[head]) {
++next_head;
... 阅读全帖
m***h
发帖数: 23691
27
你连Jacob的品种都没搞清楚
The breed standards of the Australian, American and Canadian kennel clubs
specify that the Australian Cattle Dog should have a natural, long, un-
docked tail. There will often be a solid colour spot at the base of the tail
and a white tip. The tail should be set moderately low, following the slope
of the back. It should hang in a slight curve at rest, though an excited
dog may carry its tail higher. The tail should feature a reasonable level of
brush.[1]
In the US, tails are some... 阅读全帖
e*******n
发帖数: 872
28
来自主题: DataSciences版 - 40道经典DS/ML面试题解答,求指导
原题见
http://www.mitbbs.com/article_t/DataSciences/10029.html
专门开一个贴,尝试逐题解答。本人菜鸟,求大牛指导
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
1. Given a coin you don’t know it’s fair or unfair. Throw it 6 times and
get 1 tail and 5 head. Determine whether it’s fair or not. What’s your
confidence value?
我的答案是:
H0: the coin is fair
Ha: the coin is unfair
X is the number of heads
Rejection region: |X - 3| > 2, i.e., X = 0,1,5,or 6
significance level alpha:
alpha = P(reject H0 | H0 i... 阅读全帖
r*******n
发帖数: 3020
29
来自主题: JobHunting版 - List Flattening from book
我的递归解法,大家看看对吗?
Node flat_list_head[N]; // N is the largest level.
void flattenList(Node *head, int level)
{
if (head->next){
insert_node_front_flat_list_head(head, level);

// Go next
head = head->next;
flattenList(head, level);
}

if (head->child){
insert_node_front_flat_list_head(head, level+1);
// Go child
head = head->child;
flattenList(head, level+1);
}
}
void ... 阅读全帖
i****1
发帖数: 445
30
来自主题: JobHunting版 - 明天电面,求建议
Node * Merge(Node * head1, Node * head2)
{
Node * head3, *tail;
head3 = tail = new Node;
while(head1 && head2)
{
if (head1 -> data < head2 -> data)
{
tail -> next = head1;
tail = head1;
head1 = head1 -> next;
}
else
{
tail -> next = head2;
tail = head2;
head2 = head2 -> next;
}
}
if (head1)
{
tail -> next = head1;
}
else
{
... 阅读全帖
I**********s
发帖数: 441
31
来自主题: JobHunting版 - fb家面试题讨论
用stack的是根据Binary Tree的iterative inorder traversal.
Recursive 版本如下:
TreeNode * convert(TreeNode * root) {
if (! root) return NULL;
TreeNode * head = NULL, * tail = NULL, * prev = NULL;
get(root, head, tail, prev);
if (head) {
head->left = tail;
tail->right = head;
}
return head;
}
void get(TreeNode * root, TreeNode *& head, TreeNode *& tail, TreeNode *
& prev) {
if (! root) return;
get(root->left, ... 阅读全帖
I**********s
发帖数: 441
32
来自主题: JobHunting版 - fb家面试题讨论
用stack的是根据Binary Tree的iterative inorder traversal.
Recursive 版本如下:
TreeNode * convert(TreeNode * root) {
if (! root) return NULL;
TreeNode * head = NULL, * tail = NULL, * prev = NULL;
get(root, head, tail, prev);
if (head) {
head->left = tail;
tail->right = head;
}
return head;
}
void get(TreeNode * root, TreeNode *& head, TreeNode *& tail, TreeNode *
& prev) {
if (! root) return;
get(root->left, ... 阅读全帖
j**7
发帖数: 143
33
来自主题: JobHunting版 - fb家面试题讨论
O(N) time, O(1) extra space
public TreeNode[] convertBST(TreeNode root) {
TreeNode head = null;
TreeNode tail = null;
TreeNode current = root;
while (current != null) {
if (current.left != null && current.left.value < current.value) {
TreeNode left = current.left;
while (left.right != null && left.right != current) {
left = left.right;
}
if (left.right == null) {
... 阅读全帖
j**7
发帖数: 143
34
来自主题: JobHunting版 - fb家面试题讨论
O(N) time, O(1) extra space
public TreeNode[] convertBST(TreeNode root) {
TreeNode head = null;
TreeNode tail = null;
TreeNode current = root;
while (current != null) {
if (current.left != null && current.left.value < current.value) {
TreeNode left = current.left;
while (left.right != null && left.right != current) {
left = left.right;
}
if (left.right == null) {
... 阅读全帖
w*******e
发帖数: 15912
35
https://www.zhihu.com/question/20822815
"我有什么资格说话呢?如果你要了解我的本事,真的很简单:我最精要的代码都放在
GitHub 上了。但是除非接受过专门的训练,你绝对不会理解它们的价值。你会很难想
象,这样一片普通人看起来像是玩具的 40 行 cps.ss 代码,融入了我一个星期的日日
夜夜的心血,数以几十计的推翻重写。这段代码,曾经耗费了一些顶尖专家十多年的研
究。一个教授告诉我,光是想看懂他们的论文就需要不止一个月。而它却被我在一个星
期之内闷头写出来了。我是在说大话吗?代码就摆在那里,自己去看看不就知道了。当
我死后,如果有人想要知道什么是我上半生最重要的“杰作”,也就是这 40 行代码了
。它蕴含的美,超越我给任何公司写的成千上万行的代码。"
有没有人来说说这个东西,我想知道他有没有说大话。
附代码:
;; A simple CPS transformer which does proper tail-call and does not
;; duplicate contexts for if-expressions.
;; auth... 阅读全帖
w*******e
发帖数: 15912
36
据说99%的码工见了王垠的40行code之后五花大绑自惭形秽:
王垠40行代码解析
http://wineway.pw/project1/2017/04/24/1/
;; A simple CPS transformer which does proper tail-call and does not
;; duplicate contexts for if-expressions.
;; author: Yin Wang ([email protected]/* */)
(load "pmatch.scm")
(define cps
(lambda (exp)
(letrec
([trivial? (lambda (x) (memq x '(zero? add1 sub1)))]
[id (lambda (v) v)]
[ctx0 (lambda (v) `(k ,v))] ; tail context
[fv (let ([n -1])
(lambd... 阅读全帖
h****t
发帖数: 184
37
来自主题: JobHunting版 - BST和有序双向链表的相互转换?

我写了一个,请指正。
node * findmiddle( node *head, node *tail)
{
if ( head == null || tail == null )
return null;
while ( head != tail && head->right != tail)
{
head = head->right;
tail = tail->left;
}
return head;
}
void ListToTree(node *head, node *tail, node *& root)
{
node *mid,*tr;
if ( head == null || tail == null )
{
root = null;
return;
}
if ( head == tail )
{
root = head;
root->left = root->right = nu
j********e
发帖数: 1192
38
来自主题: JobHunting版 - MS on-site 面经&求分析(口头offer)
你的有问题吧,所有节点串起来了。
我的代码比你多的几行就是在断开不同层的链表。
另外,我假定原来node->next已经都是NULL了,所以省了2行
设定head->next = NULL 和 tail->next = NULL;

感觉还是有问题,不知道是不是我看错了。
void linkSamelayer(node * root)
{
head=root;
tail=root;
head->next=NULL;
while(head)
{
if(head->left)
{
tail->next=head-left;
tail=tail->next;
}
if(head->right)
{
tail->next=hed->right;
tail=tail->next;
}
tail->next=NULL;
head=h... 阅读全帖
p*****e
发帖数: 537
39
来自主题: JobHunting版 - reorder list 递归方法超时
我的没超时,供你参考。
// return the tail of the list (index = end+1)
ListNode* reorderHelper(ListNode* head, int start, int end){
if (start > end){
return NULL;
}
if (start == end) {
ListNode* tail = head->next;
head->next = NULL;
return tail;
}
else if (end == start + 1){
ListNode* tail = head->next->next;
head->next->next = NULL;
return tail;
}

ListN... 阅读全帖
f*******w
发帖数: 1243
40
贴个我写的……
class Solution {
public:
int findMin(vector &num) {
int head = 0, tail = num.size() - 1, mid;
while (head < tail) {
if (num[head] < num[tail]) return num[head];
mid = head + (tail - head) / 2;
if (num[mid] > num[tail]) {
head = mid + 1;
} else if (num[mid] < num[tail]) {
tail = mid;
} else {
for (int i = mid + 1; i <= tail; ++i) {
if (nu... 阅读全帖
I**********s
发帖数: 441
41
来自主题: JobHunting版 - fb家面试题讨论
简单:
TreeNode * convert(TreeNode * root) {
if (! root) return NULL;
TreeNode * head = NULL, * tail = NULL;
stack s;
TreeNode * n = root;
while (1) {
while (n) {
s.push(n);
n = n->left;
}
if (s.empty()) {
if (head) {
head->left = tail;
tail->right = head;
}
break;
}
... 阅读全帖
I**********s
发帖数: 441
42
来自主题: JobHunting版 - fb家面试题讨论
简单:
TreeNode * convert(TreeNode * root) {
if (! root) return NULL;
TreeNode * head = NULL, * tail = NULL;
stack s;
TreeNode * n = root;
while (1) {
while (n) {
s.push(n);
n = n->left;
}
if (s.empty()) {
if (head) {
head->left = tail;
tail->right = head;
}
break;
}
... 阅读全帖
u**l
发帖数: 35
43
class Solution {
public:
vector> threeSum(vector& nums) {
vector> ret;
if (nums.size() < 3) {
return ret;
}
sort(nums.begin(), nums.end());
for (int i = 0; i < nums.size() - 2; ++i) {
if (i > 0 && nums.at(i) == nums.at(i - 1)) {
continue;
}
twoSum(ret, i + 1, nums, 0 - nums.at(i));
}
return ret;
}
private:
void twoSum(vector>... 阅读全帖
H******e
发帖数: 4682
44
希望static node fromArray(int[] a) {...}中的head或者tail只用到一个, 应该如何
update codes? Expect working codes in visual studio with only head or tail,
which mean eliminate the head or tail. Just 1 variable, no constructor. :)
hint:
You do not need double-linked list. Just think, why do we have head and tail
variables. We do not do anything with head except initial assignment.
class node
{
public int value;
public node next = null;
static node fromArray(int[] a)
{
... 阅读全帖
s*****r
发帖数: 43070
45
【 以下文字转载自 Military 讨论区 】
发信人: wsnonline (卫所南次郎-哥们儿要火啦!), 信区: Military
标 题: 王垠的[40 行代码]: 普通琐男码工们都跪安吧!
发信站: BBS 未名空间站 (Thu May 19 01:59:08 2016, 美东)
https://www.zhihu.com/question/20822815
"我有什么资格说话呢?如果你要了解我的本事,真的很简单:我最精要的代码都放在
GitHub 上了。但是除非接受过专门的训练,你绝对不会理解它们的价值。你会很难想
象,这样一片普通人看起来像是玩具的 40 行 cps.ss 代码,融入了我一个星期的日日
夜夜的心血,数以几十计的推翻重写。这段代码,曾经耗费了一些顶尖专家十多年的研
究。一个教授告诉我,光是想看懂他们的论文就需要不止一个月。而它却被我在一个星
期之内闷头写出来了。我是在说大话吗?代码就摆在那里,自己去看看不就知道了。当
我死后,如果有人想要知道什么是我上半生最重要的“杰作”,也就是这 40 行代码了
。它蕴含的美,超越我给任何公司写的成千上万行的代码。"
... 阅读全帖
H******e
发帖数: 4682
46
希望static node fromArray(int[] a) {...}中的head或者tail只用到一个, 应该如何
update codes? Expect working codes in visual studio with only head or tail,
which mean eliminate the head or tail. Just 1 variable, no constructor. :)
hint:
You do not need double-linked list. Just think, why do we have head and tail
variables. We do not do anything with head except initial assignment.
class node
{
public int value;
public node next = null;
static node fromArray(int[] a)
{
... 阅读全帖
a*****s
发帖数: 5562
47
【 以下文字转载自 Military 讨论区 】
发信人: wsnonline (卫所南次郎-哥们儿要火啦!), 信区: Military
标 题: 王垠的[40 行代码]: 普通琐男码工们都跪安吧!
发信站: BBS 未名空间站 (Thu May 19 01:59:08 2016, 美东)
https://www.zhihu.com/question/20822815
"我有什么资格说话呢?如果你要了解我的本事,真的很简单:我最精要的代码都放在
GitHub 上了。但是除非接受过专门的训练,你绝对不会理解它们的价值。你会很难想
象,这样一片普通人看起来像是玩具的 40 行 cps.ss 代码,融入了我一个星期的日日
夜夜的心血,数以几十计的推翻重写。这段代码,曾经耗费了一些顶尖专家十多年的研
究。一个教授告诉我,光是想看懂他们的论文就需要不止一个月。而它却被我在一个星
期之内闷头写出来了。我是在说大话吗?代码就摆在那里,自己去看看不就知道了。当
我死后,如果有人想要知道什么是我上半生最重要的“杰作”,也就是这 40 行代码了
。它蕴含的美,超越我给任何公司写的成千上万行的代码。"
... 阅读全帖
H******e
发帖数: 4682
48
希望static node fromArray(int[] a) {...}中的head或者tail只用到一个, 应该如何
update codes? Expect working codes in visual studio with only head or tail,
which mean eliminate the head or tail. :)
hint:
You do not need double-linked list. Just think, why do we have head and tail
variables. We do not do anything with head except initial assignment.
class node
{
public int value;
public node next = null;
static node fromArray(int[] a)
{
if (a.Count() == 0) return... 阅读全帖
H********g
发帖数: 43926
49
【 以下文字转载自 Military 讨论区 】
发信人: wsnonline (卫所南次郎-哥们儿要火啦!), 信区: Military
标 题: 王垠的[40 行代码]: 普通琐男码工们都跪安吧!
发信站: BBS 未名空间站 (Thu May 19 01:59:08 2016, 美东)
https://www.zhihu.com/question/20822815
"我有什么资格说话呢?如果你要了解我的本事,真的很简单:我最精要的代码都放在
GitHub 上了。但是除非接受过专门的训练,你绝对不会理解它们的价值。你会很难想
象,这样一片普通人看起来像是玩具的 40 行 cps.ss 代码,融入了我一个星期的日日
夜夜的心血,数以几十计的推翻重写。这段代码,曾经耗费了一些顶尖专家十多年的研
究。一个教授告诉我,光是想看懂他们的论文就需要不止一个月。而它却被我在一个星
期之内闷头写出来了。我是在说大话吗?代码就摆在那里,自己去看看不就知道了。当
我死后,如果有人想要知道什么是我上半生最重要的“杰作”,也就是这 40 行代码了
。它蕴含的美,超越我给任何公司写的成千上万行的代码。"
... 阅读全帖
H********g
发帖数: 43926
50
【 以下文字转载自 Military 讨论区 】
发信人: wsnonline (卫所南次郎-哥们儿要火啦!), 信区: Military
标 题: Re: 连王垠都被P了,老中码农这行真是没得混 (转载)
发信站: BBS 未名空间站 (Thu May 11 00:34:42 2017, 美东)
据说99%的码工见了王垠的40行code之后五花大绑自惭形秽:
王垠40行代码解析
http://wineway.pw/project1/2017/04/24/1/
;; A simple CPS transformer which does proper tail-call and does not
;; duplicate contexts for if-expressions.
;; author: Yin Wang ([email protected]/* */)
(load "pmatch.scm")
(define cps
(lambda (exp)
(letrec
([trivial? (lambda (x) (memq x '(zer... 阅读全帖
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)