B*****s 发帖数: 3463 | 1 觉得出题的太变态了,解题的人太聪敏了。
都不, 这个就是算一个字符串,相同连续字符的个数. (会不会出现4呢? LOL)
没事看那个小朋友不顺眼,就给让他们算到第15好了
[root@localhost trash]$ ./test3.pl
Seq#1 1
Seq#2 11
Seq#3 21
Seq#4 1211
Seq#5 111221
Seq#6 312211
Seq#7 13112221
Seq#8 1113213211
Seq#9 31131211131221
Seq#10 13211311123113112211
Seq#11 11131221133112132113212221
Seq#12 3113112221232112111312211312113211
Seq#13 1321132132111213122112311311222113111221131221
Seq#14 1113122113121113123112111311222112132113213221133122211311221... 阅读全帖 |
|
d********l 发帖数: 1824 | 2 比赛感想:
1. 很明显这场是雪梨mm 的show, 当然cur 打得配合也是相当的好, 控牌很稳。
2. 特别感谢stanley 开始在mm 掉线(3:2)后同意从新比赛, 气度很好
3. 特别感谢金牌替补wii5, 救火队员一枚, 居家旅行, 80分比赛必备
4. 比赛过程: 开始从2:2 到9:8 都很胶着, 然后stanley 和wii5 率先过10 比分
是J: 9. 这个时候wii5 庄, stanley殿分的时候一手失误结果cur 和mm 80 分坎坎上
台。 而后mm 庄开始发飙 比分一直到Q:J, 这个时候又轮到mm 的庄结果小光 A: J
, 最后一把cur 当庄 无悬念的过A, gg思密达
5. 双方离场非常的迅速, 估计都急急忙忙赶着去厕所, 这里友情提示, 憋尿有害健
康。。。 |
|
P**5 发帖数: 7467 | 3 (cur | prev) 03:49, 19 April 2013 Risker (talk | contribs) m .
. (6,697 bytes) (0) . . (Protected Zhu Ling (poisoning victim):
Violations of the biographies of living persons policy ([Edit=Allow only
autoconfirmed users] (expires 03:49, 19 April 2014 (UTC)) [Move=Allow only
autoconfirmed users] (expires 03:49, 19 April 2014 (UTC)))
(cur | prev) 03:47, 19 April 2013 Risker (talk | contribs) . .
(6,697 bytes) (-196) . . (→Police investigation: the p... 阅读全帖 |
|
t******n 发帖数: 2939 | 4 ☆─────────────────────────────────────☆
guanzhu (guanzhu) 于 (Fri Apr 19 13:59:10 2013, 美东) 提到:
最近进展:有大侠出手,孙维嫌疑人描述已经在wiki上恢复!
http://en.wikipedia.org/wiki/Zhu_Ling_%28poisoning_victim%29
铊公主计划落空了吧,Bitch is a Bitch,贱人就是矫情。
21:51, 19 April 2013 Huangmch (talk | contribs) . . (9,016
bytes) (+2,265) . . (Undid revision 551080407 by Risker (talk))
03:47, 19 April 2013 Risker (talk | contribs) . . (6,697
bytes) (-196) . . (→Police investigation: the... 阅读全帖 |
|
z*****e 发帖数: 14786 | 5 不好意思,没看到你的帖,现在试着来回答问题~
1.你在超市看到的两种,叶子形状有区别吗?我只知道parsley分curly leaf和flat
leaf--顾名思义。我查到的资料说是flat leaf的疗效好,curly leaf的主要用来做
装饰用的。作为herb,精华都集中在叶子上。不过我发现杆子味道也很浓,所以我叶子
杆子一起用。
2.Fluffy有症状的时候,我会连续喂一两个星期。之后就三只猫一起,隔一两天每猫给
一小个冰块的parsley tea的量维持。其实这个也是我自己想的,真的多少量最好,应
该要根据猫猫尿尿的情况具体来定。
下面的图,左面是curly leaf,右面是flat leaf
来是通了
有几个问题
一样我两种都试了, 杆多的味道大,叶子多的颜色绿, 不知道哪种效果更好;
果 |
|
b*******s 发帖数: 5216 | 6 #include
#include
#include
#include
using namespace std;
using namespace std::chrono;
high_resolution_clock::time_point get_tick()
{
return high_resolution_clock::now();
}
int main()
{
using check = future;
deque checks;
for (uint64_t loop = 0;loop < 1000;++loop)
{
checks.push_back(async(launch::async,get_tick));
}
high_resolution_clock::time_point prev = checks[0].get();
checks... 阅读全帖 |
|
b***i 发帖数: 3043 | 7 学到了很多可以提高效率的方法。这些是老魏自己发明的,还是也是学的?
比如
104 for (size_t i=0; i
105 Ticket *cur = &_tickets[i];
106 cur->_next = (cur + 1);
107 }
108 _tickets[n - 1]._next = NULL; |
|
发帖数: 1 | 8 初学java和编程,想请大家指点指点下边这段code有什么办法可以写得更好?
这个方法输入是一个word (String),然后想找到word里有几个音节,规则如下:
1.a,o,u,e,i,y都算元音
2.如果两个或以上元音连续,则只算一个音节
3.如果e是词的最后一个字母,而此外这个词没有别的音节,那这个e不算音节
4.不能用regex,得用loop
int numSyllables(String word)
{
char[] wordarray = word.toCharArray();
int wordcount = 0;
char prev = 0;
for (int i = 0; i < wordarray.length; i++) {
char cur = wordarray[i];
if (i > 0) prev = wordarray[i-... 阅读全帖 |
|
s***o 发帖数: 2191 | 9 只用loop大概也就这样了。按我的习惯改一下的话
// not verified
char[] wordarray = word.toCharArray();
int wordcount = 0;
boolean isPreviousVowel = false;
for (int i = 0; i < wordarray.length; i++) {
char cur = wordarray[i];
if (cur == 'e' && i == wordarray.length - 1 && !isPreviousVowel)
{
return wordcount == 0? 0 : wordcount +1;
}
if ("aoeuiyAOEUIY".contains("" + cur)) {
if (!isPreviousVowel) {
... 阅读全帖 |
|
x***3 发帖数: 1708 | 10 【 以下文字转载自 Statistics 讨论区 】
发信人: xj103 (xj103), 信区: Statistics
标 题: 帮小朋友问个概率问题啊!
发信站: BBS 未名空间站 (Wed Aug 22 00:00:10 2012, 美东)
包子伺候,先谢谢大家了!
The costume shop is selling a disguise kit, each disguise kit is made up of
a mustache, a wig, and false nose. The choices for each a listed below:
Mustache: Brush, Handlebar
Wig: Bald, Curly, Long
Nose: pug, hooked, straight, red
1. What is the probability that the wig is bald, curly, or long?
2. What is the probability that the nose is either pug or red? |
|
a****0 发帖数: 159 | 11 I don't think so. This is why:
http://www.bankersaccuity.com/resources/bank-rankings/
Rank
Cur Prev
Bank Assets US$m + or -
(local cur) Capital US$m Balance Sheet
Rank up 1 2 Deutsche Bank AG , Frankfurt am Main , Germany *2,
804,332 13.56% 3,084.10 31.12.11
Rank down 2 1 BNP Paribas SA , Paris , France *2,546,693 -1.
65% 33,274.59 31.12.11
Rank up 3 6 Industrial & Commercial Bank of China Limited , Beijing
, China ... 阅读全帖 |
|
|
发帖数: 1 | 13 12月26日 事实的真相
以前我们分析过,Augusta, GA 只是这个人体基地的一个点,而且我们也追踪到还有一
个点在加州。那么经过更多的分析,显示事实的真相可能是如此。这些地下通道是很久
以前就存在的,是为了战争或避难用的,后来在南北战争中,又充当奴隶逃跑到北方的
通道。那么在后来的后来,就被一些别有用心的人充当了非法活动的场地。而到了80年
代后,日本人就加入进来,把其改造成了一个军事,人体实验基地,成了报复美国的一
种手段。当然,我也强调历史和解,仇恨和解,但要在正确的认知,悔改下的和解。如
果一边在屠杀受害者,一边高谈和解,并千方百计掩盖事情真相的曝光,这不是悔改的
表现,最多是转移了屠杀的目标,我们不能原谅罪恶势力彼此勾结下的和解。根据分析
,这个基地的入口就在Deerfield, ILLinois. 世界每一个人都是这个基地的受害者,
都是这些大药厂的受害者,受害者以亿为单位来计算。你们很可能都在不知不觉中受到
了他们的伤害,请把信息传达到世界每一个角落,让我们一起携手和世界上最邪恶的势
力做顽强的斗争,他们现在还在屠杀无辜的受害者,每天在我家里杀人。请你们和我站
在... 阅读全帖 |
|
W*****B 发帖数: 4796 | 14 她会不会哪天把自己丈夫给克隆了?她有丈夫没?
Barbra Streisand Explains: Why I Cloned My Dog
In a frank and lengthy interview in Variety this week, Barbra Streisand
dropped one very notable aside: that two of her dogs were clones of a
previous dog, Samantha, who had recently died. Here, Ms. Streisand explains
how this medical marvel, born of sadness, came to pass.
I was so devastated by the loss of my dear Samantha, after 14 years together
, that I just ... 阅读全帖 |
|
n******g 发帖数: 17225 | 15 Nunaya Biddness III • 4 hours ago
Let Curly Haugland know what you think;
Office; (701) 255-0030
Here is his home info. Stop buy and say Hi.
Curly Haugland
2914 Gentry
Bismarck, ND 58503
(701) 255-2427 |
|
z*****n 发帖数: 633 | 16 公司是总部在欧洲的癌症治疗设备生产商,目前在美国的分公司有新的和各大医院合作
开发的治
疗中心,需要招聘以下四类工程师,加速器,软件,电气和射线物理师。头两年主要工
作内容是
站点建设,大概2年后站点完成交付给医院使用,工作重点转为维护。我们的工作只和
设备打交道
,不涉及病人,工作期间想要调动到别的类似站点也有可能。工作时间各个站点规定不
同,有的是3班倒,有的是固定,有的是周末。系统很复杂,但是个人工作内容不复杂
,都是从不会的开始学,有相关文凭基础的都可以开始。有兴趣的请发简历到
[email protected]
/* */,我初选后向公司总部推荐。
Systems Engineer - Cyclotron – Somerset, NJ
Systems Engineer - Software – Warrenville, IL & Knoxville, TN
Systems Engineer - Electronics – Seattle, WA
Systems Engineer – Electronics – Philadelphia, PA
Field Serv... 阅读全帖 |
|
|
B*****t 发帖数: 335 | 18 my code for first problem, not tested.
const int N = 1000;
int b[N], a[N];
int n;
void dfs(int a[], int cur, int level) {
if(level==k) {
copy(b, b+k, ostream(cout," "));
cout<
return;
}
int i, j;
for(i=cur+1; i<=n; i++) {
b[level+1] = a[i];
dfs(a, i, level+1);
}
} |
|
s******t 发帖数: 2374 | 19 请教了一下别人,可以用module division...这不就是那个itoa的题目变形么
其实不用啥bit运算的。
我写一下吧:
int reverseInt(int a){
boolean flag = true;
if(a<0) {a=-a; flag = false;}
int result = 0;
while (a!=0){
int cur = a%10;
a = a/10;
result = result * 10 + cur;
}
if(!flag) return -result;
else return return result;
} |
|
a*u 发帖数: 97 | 20 我的想法和pathfinding比较像,use priority queue with counts and position.
If (len-1)/(count-1)>=d is true, proceed to generate the new string.
引用roufoo的例子,初始化priority queue是
key / count / position
C 3 Integer.MIN_VALUE
B 2 Integer.MIN_VALUE
D 2 Integer.MIN_VALUE
E 2 Integer.MIN_VALUE
A 1 Integer.MIN_VALUE
E 1 Integer.MIN_VALUE
Maintain a cur reference, every time find max(count) with cur-position>=d (
customize comparable function). After printing a key, decrement its count (
remove if count reaches zero |
|
c***n 发帖数: 809 | 21 remember the previous one,
set the previous->next = cur-> next,
delete cur |
|
d********w 发帖数: 363 | 22 有种做法是遍历字典,对每个字典中的词和当前的串做比较,如果满足distance的要求
,可以继续深层搜索。但要标记当前词是否用过,如果下一层失败的话,还要把状态改
成not visited,应该怎么保存这个状态么?请高手指点
如果题目加上限制,不能直接遍历字典,只有一个接口,isInTheDictionary(str), 那
么只能去遍历可能的下一个单词,尝试次数应该是(26-1)*length,就可以继续搜索了。
find_path(String a, String b, Path_List):
if (a.equals(b))
return
for (int i = 0; i
for (int j = 0; j < 26; j++):
if (a[i] == ('a' + j))
continue;
String cur =a.substr(0, i) + ('a'+j) + a.substr(i... 阅读全帖 |
|
g**********y 发帖数: 14569 | 23 public class Boggle {
private final int N = 5;
private HashSet m_words;
public Boggle() {
m_words = new HashSet();
}
public static void main(String[] args) {
String[] str = new String[]{
"AEBOF", "TSUVW", "RFOEG", "RSOFI", "PQWRE"
};
new Boggle().run(str);
}
public void run(String[] str) {
char[][] cs = new char[N][N];
boolean[][] used = new boolean[N][N];
m_word... 阅读全帖 |
|
x*****o 发帖数: 33 | 24 来自主题: JobHunting版 - G家面试题 求大牛鉴定,这个也N!吗?
public int findMin(int[][] a)
{
if (a == null || a.length == 0)
{
return 0;
}
if (a.length == 1)
{
return a[0][0];
}
int n = a[0].length;
ArrayList avail = new ArrayList();
for (int i = 0; i < n; i++)
{
avail.add(i);
}
return find(a, 0, avail);
}
private int find(int[][] a, int curRow, ArrayList availCols)
{
... 阅读全帖 |
|
x*****o 发帖数: 33 | 25 来自主题: JobHunting版 - G家面试题 求大牛鉴定,这个也N!吗?
public int findMin(int[][] a)
{
if (a == null || a.length == 0)
{
return 0;
}
if (a.length == 1)
{
return a[0][0];
}
int n = a[0].length;
ArrayList avail = new ArrayList();
for (int i = 0; i < n; i++)
{
avail.add(i);
}
return find(a, 0, avail);
}
private int find(int[][] a, int curRow, ArrayList availCols)
{
... 阅读全帖 |
|
R*****i 发帖数: 2126 | 26 我不是大牛,也不懂java,看了一下楼主的代码,感觉没什么大问题,就是这个地方有
点问题:
if(cur==null)
return head;
==〉
if(cur==null){
pre.next = begin;
return head;
}
否则,最后一截就没有了。 |
|
l*****a 发帖数: 14598 | 27 先找出 sorted需要替换的字符
start from beginning of S
如果当前字符不在T,use the smallest character
如果当前字符在T且需要被替换(S has more than T) {
if cur char> 需要被替换的,替换当前
else { if(already has the same cur char in S as T,must update this)
替换当前
}
} |
|
p****e 发帖数: 3548 | 28 当然不对了,后面你有
prev = cur;
如果你修改了cur的值,结果就不一样了。。 |
|
f*********g 发帖数: 110 | 29 你的这个方法不错,避免了内部修改head, 这是我的代码,大牛觉得呢?
ListNode rev(ListNode head){
if(head==null||head.next==null) return head;
WrapperNode newhead = new WrapperNode();
reversehelp(head, newhead);
return newhead.node;
}
ListNode reversehelp(ListNode head, WrapperNode newhead){
if(head.next==null){
newhead.node=head;
return head;
}
ListNode cur=reversehelp(head.next,newhead);
cur.next=head;
head.next... 阅读全帖 |
|
|
E*****m 发帖数: 25615 | 31 DP 很容易寫
public class Solution {
public int minimumTotal(ArrayList> triangle) {
// Start typing your Java solution below
// DO NOT write main() function
int[] sum=new int[triangle.size()];
for (int i=0;i
sum[i]=triangle.get(triangle.size()-1).get(i);
for (int i=triangle.size()-2;i>=0;i--){
ArrayList cur=triangle.get(i);
for... 阅读全帖 |
|
t*******e 发帖数: 274 | 32
我有两个问题关于你的代码:
1)hitcnt的index是什么含义,我理解每个index是1秒的间隔,hitcnt[0]表示cur hit
()之前300秒时的hit()数目,hitcnt[299]表示last hit()数目, 假如cur hit()是
last hit()之后2秒,根据你的代码,会把hitcnt[0]和hitcnt[1]置0, 但是这里是否需
要把剩余的298个值往前移两格呢?
2)你更新的时候都是自增1,但是题目并没有说明每秒的hit()数目都固定为1,这里我
也有疑问 |
|
h**o 发帖数: 548 | 33 谁考你了?
template
class Node{ //used by List
Node(T data, Node* next):_data(data), _next(next){}
T _data;
Node* _next;
friend class List; //only friend can call private
friend class ListIterator;
};
template
class List{
List(Node* head=NULL, Node* tail=NULL);
List(const List& orig);
List& operator=(const List& orig);
push_front();push_end();pop_front();pop_end();
//the following are used for iterator:
typedef ListIterator... 阅读全帖 |
|
d******g 发帖数: 38 | 34 还是有点不同的吧,swap(cur.prev, cur.next) |
|
l*****a 发帖数: 14598 | 35 我想这么做,你看咋样
List list=new ArrayList();
List result=new ArrayList();
for(int i=0;i
if(input.charAt(i)=='?') list.add(0);
}
while(true) {
String cur=genString(input,list);
result.add(cur);
// if all 1 in list, break;
for(int i=list.size()-1;i>=0;i--) {
if(list.get(i)==0) {
list.set(i)=1;
break;
} else {
list.set(i)=0;
}
}
}
return result; |
|
M*****M 发帖数: 20 | 36 同意!
如果像leetcode insert interval里区间vector已经排序,不用创建新vector, 只需
一步erase 和 insert, O(n)
vector insert(vector &intervals, Interval
newInterval) {
auto start = intervals.begin();
auto it= start;
for(; it !=intervals.end(); ++it) {
if(newInterval.endstart) {
//insert newinterval here
//before insertion, erase prev intervals which are already
merged to newinterval
it = intervals.erase(start,... 阅读全帖 |
|
x*******9 发帖数: 138 | 37 略暴力,Lintcode上的题。(没看错,是Lintcode,不是Leetcode)
class Solution {
public:
/**
* @param A: An integer array.
* @param target: An integer.
*/
int MinAdjustmentCost(vector A, int target) {
if (A.empty()) {
return 0;
}
int n = A.size();
int ptr = 0;
memset(dp, 0, sizeof(dp));
for (int i = 0; i < n; i++) {
int cur = A[i];
int next = ptr ^ 1;
memset(dp[next], INF, sizeof(dp[nex... 阅读全帖 |
|
l***p 发帖数: 160 | 38 time series 的题和leetcode 的 Largest Rectangle in Histogram 很像
我的解法(把int 改成double) 是一样的。
class Solution {
public:
vector maxDays(vector nums) {
int size = nums.size();
vector result(size, 0);
nums.push_back(INT_MAX);
stack s;
int idx = 0;
while (idx <= size) {
if (s.empty() || nums[idx] < nums[s.top()]) {
s.push(idx++);
}
else {
int cur = s.top();
... 阅读全帖 |
|
I**********a 发帖数: 1183 | 39 来自主题: JobHunting版 - 店面题一问 linked list remove duplicates,第一个保留,其余都删。
因为不是sorted, 所以我说要一个hashset记录是否是duplicates。
码完了,追问code中做remove的那一步: pre.next = cur.next; 问那cur node怎么办
? 我说node还在,只是不在list里了。 他说memory leak了怎么办? 当时太紧张,蒙
了,刷题的时候从没管过这茬。 应该怎么改code?
还有更好的解法吗? 谢谢 |
|
z*****n 发帖数: 633 | 40 公司是总部在欧洲的癌症治疗设备生产商,目前在美国的分公司有新的和各大医院合作
开发的治
疗中心,需要招聘以下四类工程师,加速器,软件,电气和射线物理师。头两年主要工
作内容是
站点建设,大概2年后站点完成交付给医院使用,工作重点转为维护。我们的工作只和
设备打交道
,不涉及病人,工作期间想要调动到别的类似站点也有可能。工作时间各个站点规定不
同,有的是3班倒,有的是固定,有的是周末。系统很复杂,但是个人工作内容不复杂
,都是从不会的开始学,有相关文凭基础的都可以开始。有兴趣的请发简历到
[email protected]
/* */,我初选后向公司总部推荐。
Systems Engineer - Cyclotron – Somerset, NJ
Systems Engineer - Software – Warrenville, IL & Knoxville, TN
Systems Engineer - Electronics – Seattle, WA
Systems Engineer – Electronics – Philadelphia, PA
Field Serv... 阅读全帖 |
|
h**********r 发帖数: 2284 | 41 What I was talking about is a protruding door knock that has an uplifting
curly hook on the top and a 'knock' part that rest on your door. The
Mistletoe can be hung on top of that curly hook, which again is a regular
part of a pretty door knock. |
|
w*y 发帖数: 77 | 42 最近湾区治安不行,我觉得不是08年经济危机的后遗症,而是贼开始进化了。美国说白
了是个信用社会,比如店里退东西,carpool lane,没防盗门防盗窗,后院门就弄个钩
子,这些都是防君子不防小人。
现在湾区的贼打算挑战这种秩序。他们只瞄着好区,只在白天下手(当然不是周末),
只瞄着亚洲人,特别是老中聚居地。碰到狠的,把车停进你家车库,搬上大半天,才从
容离开。
警察当然是吃屎的,指望不上。所以湾区老中全民在搞diy防盗系统。我看吧也没啥大用
,不一定顶得过一条狗。
其实现在很多贼是老莫,不是老黑了,就连著名的老黑聚居地East Palo Alto,老莫都
在大量进驻,大有把老黑赶回oakland老巢的驾驶。尼玛以后南湾半岛就是老莫的天下了
。
有点跑题了。反正那天我就和老莫唠嗑,说最近治安不行啊。他说,其实吧,贼一不喜
欢退休人士比较多的地方,白天老有人晃,二不喜欢cur-de-sac,怕被人堵住了溜不掉
。所以呢,买房的避开高压线,尽量考虑cur-de-sac吧。 |
|
y********g 发帖数: 598 | 43 list of sulfates-free AND cones-free shampoo(无硅,无SLS洗发水列表)
ABBA True Curls and True Shine
Alba Botanica (http://brand.kimiss.com/brand/1405/)
Alchemy
Alterna
Aubrey Organics (http://brand.kimiss.com/brand/730/)
Avalon Organic Botanicals (阿瓦隆)
Azida Hemp Oil Shampoo
Back to Basics Blue Lavender Color Protecting Shampoo
Beauty Without Cruelty
Blended Beauty Soy Cream Shampoo and Curl Cleansing Conditioner
Brocato Cloud 9
Burt's Bees Herbal Treatment and Grapefruit & Sugar Beet Shampoos(小蜜蜂)
Califo... 阅读全帖 |
|
D*****8 发帖数: 313 | 44 let me tell you a joke.....
American always say dont go curly
only curly boys try to understand women/ladies/girls/chicks~~~~~~
haha |
|
|
|
l****n 发帖数: 6896 | 47 穿着一身雨水打透单薄恤衫手里拿个硬纸板牌子的默默走到长长包子队伍的尾巴 .....
"I'll do anything for baozi", wrote on the rain-soaked cardboard in a
slanted curly way, as curly as his uncut long hair flowing down from his
shoulder. |
|
m****x 发帖数: 2506 | 48 1.Curly Tail Grub
Curly Tail is often used as a generic term for a whole class of soft-plastic
grubs with curled tails, but it’s actually a trademark of Mister Twister,
the company that made the first ones more than 30 years ago. Combined with a
plain or painted round-head jig, as shown here, these are the best fishing
lures of all time. They are cheap, easy to use, and work very well (in
various sizes) for just about anything that swims in freshwater or inshore
saltwater. As just one example, m |
|
p****u 发帖数: 22764 | 49 无意中看到这个,也许有点参考价值
http://www.crappiefishingusa.com/id109.html
"Most, if not all experienced anglers consider water temperature as the
single most critical factor governing crappie location and behavior.
This guide will help you pinpoint crappie year-round, so you can spend
more time fishing and less time searching."
Water Temperature: 35 Degrees
Crappie will be holding tight to bottom cover in 30-50 feet deep and tight-
lipped, but they still need to eat and is catchable with the right
presentat... 阅读全帖 |
|
L***s 发帖数: 290 | 50 沙龙兄好。
花鲢、白鲢、wiper、buffalo、王八等大部分鱼是在大坝上的,用的是刀神老大的一拖
二钓法配上Mister Twister® Curly Tail Grub上的,grub链接:
http://www.cabelas.com/product/Mister-Twisterreg-Curly-Tail-Gru
jig head可用1/8 oz + 1/16 oz或1/16 oz + 1/32 oz,视水流缓急目标鱼大小而定;
grub用2 inch的,颜色可选pump pepper或chartreuse,视水流缓急水色清浊而定。
也可以用1/4 oz的橙色jig head配上3 inch的chartreuse grub拖底,上过walleye、
catfish、buffalo。
1/6 oz的Rooster Tail inline spinner也不错,上过草鱼、walleye等等。
水面硬饵也上过鱼,不过用的不好,就不多说了。
以上是在下浅见,错误不足之处还请各位大神指正:) |
|