由买买提看人间百态

topics

全部话题 - 话题: std
首页 上页 1 2 3 4 5 6 7 8 9 10 (共10页)
b*****c
发帖数: 1103
1
String Similarity
为啥米KMP会超时呢,不是死循环,我测过100000的,只过了4/10 test case
int test_num;
char str[100024];
int F[100024];
long long ans;
void FailureFunction(char P[], int F[],int m){
int i,j;
F[0]=0; // assignment is important!
j=0;
i=1;
while(i if(P[i]==P[j]){
F[i]=j+1;
i++;
j++;
}else if(j>0){
j=F[j-1];
}else {
F[i]=0;
i++;
}
}
}
void solve(int m)
{
int i=m;
int... 阅读全帖
y**f
发帖数: 32
2
来自主题: JobHunting版 - 请教一个新鲜算法面试题
这个难道不是std::map的应用?
std::map
key = std::string("公司A:地点A")
c*****e
发帖数: 737
3
来自主题: JobHunting版 - 微软C++面试题
1 #include
2
3 class A
4 {
5 public:
6 A(int v_) : v(v_) {};
7 virtual void foo() {std::cout << "A:" << v << "\n";}
8 int v;
9 };
10
11 class B : public A
12 {
13 public:
14 B(int w_, int z_):w(w_), A(z_){};
15 virtual void foo() {std::cout << "B:" << w << "\n";}
16 int w;
17 };
18
19 class C : public A
20 {
21 public:
22 C(int k): A(k){};
23 v... 阅读全帖
s********y
发帖数: 40
4
来自主题: JobHunting版 - AMAZON PHONE SCREEN 1 基本死掉。
写了个C++版本的螺旋打印。。
void printCircular(int** data,int rows, int cols)
{
int minRow = 0;
int minCol = 0;
int maxRow = rows-1;
int maxCol = cols-1;
while(minRow <= maxRow && minCol <=maxCol)
{
for(int j = minCol; j <= maxCol; j++)
std::cout< minRow++;
for(int i = minRow; i <= maxRow; i++)
std::cout< maxCol--;
for(int j = maxCol; j >= minCol; j--)
std::cout<阅读全帖
w********s
发帖数: 1570
5
来自主题: JobHunting版 - 请教两个算法题
#include
void print(int begin_, int end_, int depth_)
{
static int length = depth_;
static int* array = new int[length];
if (end_ - begin_ + 1 < depth_) return;
if (depth_ == 0)
{
for (int i = 0; i < length - 1; ++i)
{
std::cout << array[i] << ",";
}
std::cout << array[length - 1] << "\n";
return;
}
for (int k = begin_; k <= end_; ++k)
{
array[length - depth_] = k;
print(k + 1, end_, depth_ - 1);
}
if (depth_ == length) delete arra... 阅读全帖
C***U
发帖数: 2406
6
来自主题: JobHunting版 - C++继承问题
class Base {
public:
int x;
};
class LevelOneA: public Base {
public:
void show() { std::cout << x << std::endl; }
};
class LevelOneB: public Base {
public:
void show() { std::cout << x << std::endl; }
};
class LevelTwo: public LevelOneA, public LevelOneB {
public:
};
这个是不是有diamond inheritance problem?
我在VS里面测试没问题。
那LevelTwo这个类里面有几个x啊?
G******i
发帖数: 5226
7
☆─────────────────────────────────────☆
viisa (viiiiiisa) 于 (Fri Dec 23 01:33:02 2011, 美东) 提到:
之前都不知道还有如此方便的网站,
随便在上面做了几道题目,竟然有很不错的公司主动联系我给电面,比 refer 效率高
多了。做5道题目就可以申Facebook, Dropbox 等公司了
下月6号还有个比赛 http://codesprint.interviewstreet.com/recruit/challenges/
☆─────────────────────────────────────☆
quantx (X矿工) 于 (Fri Dec 23 01:39:55 2011, 美东) 提到:
啥公司?

☆─────────────────────────────────────☆
viisa (viiiiiisa) 于 (Fri Dec 23 01:54:43 2011, 美东) 提到:
这里有列表,里面的一个自己感兴趣的公司
http://blog.inter... 阅读全帖
s***0
发帖数: 117
8
来自主题: JobHunting版 - 请教如何保证函数时thread safe的?

to
I don't know how a boolean member variable would help.
The answer is mutexes and locks, you create a member variable mutex.
Here's some code, take out the lock and see what happens. I have a simple
cout here, but imagine you are doing some complex data operations within the
object.
#include
#include
class ThreadSafeClass
{
public:
ThreadSafeClass(int id): mThreadId(id){};
void operator()()
{
// This function will be altering the state, s... 阅读全帖
c***b
发帖数: 19
9
来自主题: JobHunting版 - 攒人品,发几个面试题 C/C++
1: How you would find out if a machine's stock grows up or down in memory (
using a simple program)?
2: Implement a thread-safe singleton. Note: The singleton instance should be
created only when requested
3: Explain exception safety in C++
4: Explain the difference between the following:
--"malloc"
--"new operator"
--"operator new"
5: What are the differences between
std::list
std::vector
std::std::map
6:一道老题,给定一个字符串,第一个单词与最后一个单词对调,第二个单词与倒数第
二个对调。
7:三个箱子,一个箱子装红球,一个箱子装黑球,一个箱子有红有黑。
每个箱子都... 阅读全帖
g***j
发帖数: 1275
10
来自主题: JobHunting版 - 关于priority_queue一问
做leedcode上面的关于k-way merge的题目,题目是
Merge k sorted linked lists and return it as one sorted list.
如下的code通过不了,似乎是因为我在priority_queue里面用了指针
std::priority_queue, CompareNode> myQ;
因为如果我改成
std::priority_queue, CompareNode> myQ;
并且把其他的相关->都改了dot之后,就可以全部通过了。
我用debug跟踪,发现myQ.pop()之后,虽然myQ.size()表小了,但是myQ.top()的内容
没有发生变化。
请问,这里面的trick是什么?难道这里不能用Node*么?如果是这样的,还有什么
container不能用Node*的?
大牛帮我解释一下好么?
class Pair{
public:
ListNode* node;
int index;
};
class CompareNo... 阅读全帖
x******a
发帖数: 6336
11
来自主题: JobHunting版 - 请问关于overloading << (转载)
【 以下文字转载自 Programming 讨论区 】
发信人: xiaojiya (xiaojiya), 信区: Programming
标 题: 请问关于overloading <<
发信站: BBS 未名空间站 (Wed Feb 27 11:59:50 2013, 美东)
I am working on the example in accelerated C++.
I have overloaded operator+= , operator+ , and operator<<.
the following code does not work.
I got "invalid operands to binary expression('ostream'(aka 'basic_ostream<
char>') and 'myString') when compiling the code.
myString s1="hello";
myString s2="world";
std::cout<< s1+s2 < it worked in the foll... 阅读全帖
b******7
发帖数: 92
12
来自主题: JobHunting版 - priority_queue C++ implementation
与std::priority_queue语义不太一致。std::priority_queue,std::less
>得到的是max heap,而你的priority_queue >得到的是min heap
x*****0
发帖数: 452
13
来自主题: JobHunting版 - leetcode, sort algorithm compiler error c++
bool myComparision1(vector x, vector y);
vector > result;
sort(result.begin(), result.end(), myComparision1);
用GCC4.6.1编译,在自己的电脑上没有问题。
leetocde 一直给出如下错误:
Line 77: no matching function for call to 'sort(std::vector
>::iterator, std::vector >::iterator, overloaded function type>)'
g***9
发帖数: 159
14
来自主题: JobHunting版 - 问一道题(2)
也贴个完整代码,序列shift移位的方法,把前一半的正数和后一半的负数对调但各自
顺序不变,
这个记得是编程珠玑的里的貌似。。
#include
#include
#include
#include
using namespace std;
void MySortImpl(vector &v, int b, int e) {
if (b >= e) {
return;
}
int m = (b + e) / 2;
MySortImpl(v, b, m);
MySortImpl(v, m+1, e);
int i, j;
i = m+1;
while (i-1 >= b && v[i-1] > 0) i--;
j = m;
while (j+1 <= e && v[j+1] < 0) j++;
int len1 = m - i + 1;
int len2 = j - (m+1) + ... 阅读全帖
n****e
发帖数: 678
15
来自主题: JobHunting版 - G家电面,已挂
C++ STL 里面有:
std::make_heap, std::pop_heap, std::push_heap, std::sort_heap
很少用到
n****e
发帖数: 678
16
来自主题: JobHunting版 - G家电面,已挂
C++ STL 里面有:
std::make_heap, std::pop_heap, std::push_heap, std::sort_heap
很少用到
e*******s
发帖数: 1979
17
来自主题: JobHunting版 - 问一段C++ iostringstream的代码
using namespace std;
11 string sentence = "And I feel fine...";
12 std::string result;
13 std::istringstream iss (sentence);
14 std::ostringstream oss;
15 string piece;
16 while(iss){
17 iss>>piece;
18 oss< 19 piece.clear();
20 }
21 result = oss.str();
22 cout<< result;
其中如果不加19行 输出就是AndIfeelfine...fine...
最后一段被重复了一次 iss究竟如何判断为空呢
有没有其他更好的办法
C*N
发帖数: 1792
18
#include
#include
#include
using namespace std;
struct currentListStruct
{
double A;
double B;
std::vector values;
};
void getMaxNSum (std::vector & array1, std::vector & array2,
currentListStruct & cur, int N)
{
if (array1.empty () || array2.empty ()) {
return;
}
cur.A = array1.back();
cur.B = array2.back();
cur.values.push_back (cur.A + cur.B);

double a=array1.front()-1, b=array2.front()-1;
... 阅读全帖
b**y
发帖数: 22
19
#include
#include
using std::cin;
using std::cout;
using std::endl;
using std::string;
int main(int argc, char* argv[])
{
cout<<"Please input a string"< string InputStr;
cin>>InputStr;
string subStr;
int i = InputStr.length()-1;
while(i>0)
{
subStr=InputStr.substr(i);
for(int j=i-1;j>=0;j--)
{
if(InputStr[j]!=subStr[(j%subStr.length())])
{
i=j;
break;
}
if(j==0)
{
//Done should be a tru... 阅读全帖
b**y
发帖数: 22
20
#include
#include
using std::cin;
using std::cout;
using std::endl;
using std::string;
int main(int argc, char* argv[])
{
cout<<"Please input a string"< string InputStr;
cin>>InputStr;
string subStr;
int i = InputStr.length()-1;
while(i>0)
{
subStr=InputStr.substr(i);
for(int j=i-1;j>=0;j--)
{
if(InputStr[j]!=subStr[(j%subStr.length())])
{
i=j;
break;
}
if(j==0)
{
//Done should be a tru... 阅读全帖
w********s
发帖数: 1570
21
来自主题: JobHunting版 - ZocDoc 面经
第三题:
struct Pair
{
Pair(int idx, int v)
{
index = idx;
value = v;
}
int index;
int value;
};
std::deque queue;
void enque(int idx, int x, int w)
{
if (!queue.empty() && queue.front().index <= idx - w)
{
queue.pop_front();
}
while(!queue.empty() && queue.back().value > x)
{
queue.pop_back();
}
queue.push_back(Pair(idx, x));
}
int get_min()
{
return queue.front().value;
}
std::vector min_window(int* arra... 阅读全帖
w********s
发帖数: 1570
22
来自主题: JobHunting版 - FB 面经
n取k,似乎很简单
#include
#include
#include
typedef std::vector > ResultVec;
ResultVec comb(int* array, int n, int k)
{
ResultVec v;
if (k == 1)
{
for (int i = 0; i < n; ++i)
{
std::vector e;
e.push_back(array[i]);
v.push_back(e);
}
return v;
}
for (int i = 0; i <= n - k; ++i)
{
int head = array[i];
ResultVec vec = comb(array + i + 1, n - i - 1, k - 1);
BOOST_FOREACH(std::vector ... 阅读全帖
x****7
发帖数: 86
23
来自主题: JobHunting版 - 请教一道G的电面题。。
C++:
#include
void replaceWildCard (std::string str, size_t pos)
{
if (pos >= str.size()) {
std::cout << str << std::endl;
return;
}
if (str[pos] == '*') {
str[pos] = '0';
replaceWildCard (str, pos + 1);
str[pos] = '1';
replaceWildCard (str, pos + 1);
}
else {
replaceWildCard(str, pos + 1);
}
}
int main (int argc, char ** argv)
{
replaceWildCard (std::string(argv[1]), 0);
return 0;
}
a***e
发帖数: 413
24
嗯,试图写O(1)的,发现用vector把指针装起来,再pass reference容易一些。但是
不知道为啥初始化的时候下面这个不行
vector m(2, NULL);
Compile Error
required from ‘std::vector<_Tp, _Alloc>::vector(_InputIterator, _
InputIterator, const allocator_type&) [with _InputIterator = int; _Tp =
TreeNode*; _Alloc = std::allocator; std::vector<_Tp, _Alloc>::
allocator_type = std::allocator]’
得换成这几行
vector m;
m.push_back(NULL);
m.push_back(NULL);
还没仔细debug 为什么下面这个答案不对,而后面那个就对。
错... 阅读全帖
s***c
发帖数: 639
25
最大是指在,如果输入数组排序后的新数组
写了一个,是O(n),但过不了大数集,需要优化
class Solution {
public:
int maximumGap(vector &num) {
if(num.size()<2) return 0;
if(num.size()==2) return abs(num[0]-num[1]);
unordered_set hh;
int res(0), val_pre(-1), val_cur(-1);
int vmax(-1), vmin(INT_MAX);
for(int i=0; i hh.insert(num[i]);
vmax=std::max(vmax, num[i]);
vmin=std::min(vmin, num[i]);
}

for(int va... 阅读全帖
a***e
发帖数: 413
26
平时几乎不用c++,有没有哪位同学帮看看怎么能让这段程序通过编译?我觉得自己思
路是对了的,不知道如果面试中碰到这种情况是否影响?没觉得哪里template用错了啊
?多谢
主要是在
Point x(a,b);
std::map::iterator it=mp.find(x);
if (it==mp.end())
mp.insert(std::pair(x,1));
else
mp[x]++;
/**
* Definition for a point.
* struct Point {
* int x;
* int y;
* Point() : x(0), y(0) {}
* Point(int a, int b) : x(a), y(b) {}
* };
*/
class Solution {
public:
int maxPoints(vec... 阅读全帖
r*g
发帖数: 186
27
第二题第二问 下午发了删了 朋友说是对的就又发上来了
bool canIWin(int, std::vector &v, int sum, int obj)
{
for(int i = 1; i < v.size(); ++i){
if(v[i]){
if(sum + i >= obj){
return true;
}else{
v[i] = false;
bool res = canIWin(2, v, sum + i, obj);
v[i] = true;
if(!res){
return true;
}
}
}
}
return false;
}
int main()
{
std::vector... 阅读全帖
r*g
发帖数: 186
28
来自主题: JobHunting版 - L家这题咋搞,巨变态
这样行不
层次遍历原来的树, 每次收集N个节点放到新树
TreeNode *convertNTree(TreeNode *root, int N)
{
TreeNode *new_tree = root;
std::queue q1, q2;
std::list chd;
q1.push(root);
q2.push(root);
while(!q1.empty()){
if(chd.size() < N){
for(auto p: q1.front().children){
q1.push(p);
}
q1.front().children.resize(0);
chd.push_back(q1.front());
q1.pop();
}else{
std::swap(q2.front... 阅读全帖
b********n
发帖数: 609
29
按着思路写了一个,是work的。
"
#include
class A {
public:
class Adapter {
public:
Adapter(A& parent)
: ref(parent.a) {
}
private:
friend class B;
int& ref;
};
A() : a(0), i(*this) {
}
Adapter& getAdapter() {
return i;
}
int getNum() const {
return a;
}
private:
int a;
Adapter i;
};
class B {
public:
void changeNum(A& a, int x) {
A::Adapter& i = a.getAdapter();
i.ref = x;
}
};
int main() {
A a;
std::cout << "Original value: " <<... 阅读全帖
z*********n
发帖数: 1451
30
第三提我也见到过,不过是C++的,其实很简单,就是a执行完解锁b,b执行完解锁c...
开始就a解锁就行了。Java的不懂。
参考代码:
#include
#include
#include
using namespace std;
class Solution
{
mutex mutexa, mutexb, mutexc;
int N = 0;
void threada()
{
for (int i = 0; i < N; ++i)
{
mutexa.lock();
cout<<"A ";
cout< mutexb.unlock();
}
}
void threadb()
{
for (int i = 0; i < N; ++i)
{
... 阅读全帖
d******b
发帖数: 73
31
一行搞定。。。。。
int main() {
std::vector v1 {"Zebra"};
std::vector v2 {"Antelope", "Bison", "Cow"};
std::vector diff;
std::set_difference(v1.begin(), v1.end(), v2.begin(), v2.end(), back_
inserter(diff));
return 0;
}
f*******6
发帖数: 665
32
This is my first time to hear that 工作满6个月才能用 STD. I think that
depend on when your employer pay STD premium for you. My STD premium was
paid by company from my first day, you may check your paystub if STD benifit
active?
b**********f
发帖数: 136
33
多谢大家的回答!我们公司HR基本没啥用。就说到due date前一个月再找他们。但我希
望现在就能了解一下。
我还想问问:
1)STD的这个一年,是去年Calendar year,like 2011, 还是last year till due
date? 是拿现在公司税前工资的2/3么?
2)拿STD,有没有要求在现公司工作12个月的?假如我的Due date那时,正好在现公司
工作了10个半月?
3)STD是不是Due Date前4周,加 产后6周 (c-section,8周)?
4)是不是休完了STD,马上可以接着用PFL 6周?(Paid family leave),这个PFL有没
有要求在现公司工作12个月啊? PFL 期间的pay是怎么样的?
问题比较多,多谢JMS的帮助!祝大家都好孕,宝宝健康可爱!
s*******9
发帖数: 28
34
I can't believe I did recalculate the data myself, though I am not familiar
with the statistics analysis.
根据你提供的文章, 这些是对比数据
没有STD的: for circumcised 634/1109=57.1%, for uncircumcised 221/347=63.6%
好像uncircumsized 的STD rate要低。Is it against the conclusion of the study?
??
不知道为什么文章只列出下面3项指标
1. Gonorrhea: circumcised 83/1109=7.4%,uncircumcised 36/347=10.3%
2. Chlamydia: circumcised 88/1109=7.9%,uncircumcised 23/347=6.6%
3. Syphilis: circumcised 6/1109=0.54%,uncircumcised 36/347=1.1%
以上这些数据可能是我理解有误。我个... 阅读全帖
k****i
发帖数: 1504
35
来自主题: Parenting版 - maternity leave问题
我们州没有STD,我们公司也没有,要自己买,我刚来一打听,买了跟没买钱上的受益
差不多,就没买,没想到很快怀孕了。估计就算是STD,公司可能也不让休那么长吧,
因为STD只是保证你生孩子有一定收入,没保证工作啊。
我原来觉得只要自己不拿钱不就行了,结果发现这个POLICY,非常奇怪。才2周,要是C
-sec,估计地都下不了吧。这德州也太抠门了,谁说美国福利好来着,国内不都休小半
年的?我原来的公司,生老大的时候,也是刚到公司没一年,不过,公司福利好,用
STD,生之前用了4周,生后用了8周(natural delivery),当时还觉得美国福利太差,生
孩子这么快就让上班了,没想到还有更离谱的在这等着我那。
不过,话说回来了,我们头说他觉得我TAKE 6周没问题,要跟HR谈谈呢,我也觉得无所
谓,不行就先在家里待着,再换工作吧,不过,觉得这个事情整个挺难理解的。
l******a
发帖数: 16364
36
☆─────────────────────────────────────☆
rh991 (qq) 于 (Mon Feb 27 11:18:52 2012, 美东) 提到:
女儿15岁了(今年9月16岁), 10年纪的高中生。 突然告诉我们她和学校里一个男孩
子彼此喜欢, 要求周末一起看电影。 唉, 我们都有点担心。 毕竟还小啊。 但又怕
太压制她, 效果也不好。 女儿在学校里, 成绩都还不错, 也比较popular.
有过来人, 给指点指点吧, 如何处理这事。
感激不尽啊!
☆─────────────────────────────────────☆
izze (漫步撒哈拉的柔韧猪) 于 (Mon Feb 27 11:24:51 2012, 美东) 提到:
你把他们丢到电影院,电影完了再送回去接回家?
看场电影,还好吧? //其他的,该教育的都提前教育了吧?:)
☆─────────────────────────────────────☆
rh991 (qq) 于 (Mon Feb 27 11:40:25 2012, 美东) 提到:
我担心以后还会... 阅读全帖
f*****l
发帖数: 1703
37
来自主题: Working版 - 如何选择?
如果能批,赶快用,趁你的老板还没反悔。
我几个月前和你的情况差不多,被新老板排挤,自知做不下去了。正好可以选择做一个
小手术,趁机歇了三个月STD,我是100%pay的,在这三个月里面呆家里爽死,顺便投投
简历,没两个月轻松自在的找到了下家,还涨工资升级别。拿到offer以后结束STD回去
,要package,顺利拿到。拍拍屁股走人。
我前后等于差不多五个月没干活,白拿工资,外加package,爽死。如果你对新老板不满
的话,没有比这更爽的惩罚方式了。
还有,你在STD期间,你老板还不能fire你,有法律保护,只能看着你在家悠哉游哉气
的干瞪眼。你结束STD以后回去,他巴不得你赶快走人,但又不敢马上动手怕违反FMLA
act被告,所以你如果提出要package,肯定会一口答应。
与人斗,其乐无穷啊。
R*********i
发帖数: 7643
38
我在北卡期间生了两个孩子,不同雇主。顺产,STD都管6周。事先填好表格,让医生签
字。生产日期和方式空着。表格好几联,先给STD公司一份, HR留一份,自己一份。生了
以后给HR发一个email告诉具体日期和方式,HR转给STD公司。具体细节会有不一样。比
如我第一次是马上停payroll,从STD支付,第二次的第一个星期还是由雇主支付。得看
他们之间的协议。HR有责任给你问明白。Good luck!
p**********u
发帖数: 15479
39
来自主题: Missouri版 - 嘴上有溃疡的要小心
嘴上有溃疡的要小心,有可能是HSV II引起的。观察对方private part有没有小泡,溃
疡。一般breakout的时候,特别是在genital area的, 估计不会有心情做,因为发作
会很疼。
There are two kinds of herpes virus: HSV-1, which is usually not an STD and
occurs on the lip, and HSV-2, which usually causes herpes genitalis, which
is essentially an STD in the genital area. Both viruses can be transmitted
by saliva, body secretions or oral sex.
HSV分两种,I 型 和 II 型,最简单的区分方法就是腰部,腰部以上是 I 型 腰部以下
是 II 型
但是I 型(通过口交的方式)可以 引起 腰部以下发病,但即使发病,也是I型 I 型极
为普遍,50%一生或多或少会被传染 我们总说上火了或者压力大嘴上起泡,其... 阅读全帖
s********1
发帖数: 1024
40
来自主题: Texas版 - 关于产假的问题请教
先看看你们公司是否有给你们买STD吧,再问问其他同事或人事部。
我们公司的情况是2周带薪产假,然后是STD,因为STD要产后2周才能开始。顺产STD
cover 4周,刨腹产6周。后面就得用自己的sick leave 或 带薪假了,或者unpaid
FMLA,我有个同事休了3个月的FMLA。不过,离开太久可能对工作影响不好,尤其你刚
去。一般2到3个月就差不多了。
o***e
发帖数: 1317
41
来自主题: WashingtonDC版 - 回国急卖车 2010 SUZUKI KIZASHI SE (转载)
2010 Suzuki Kizashi-4 Cyl.
Price Rough Trade-In Average Trade-In Clean Trade-In Retail
Base Pric $10,625 $11,750 $12,650 $15,375
Mileage: 39,000 $225 $225 $225 $225
Options: (add options)
Aluminum/Alloy Wheels Std. Std. Std. Std.
See all options chosen
TOTAL PRICE $10,850 $11,975 $12,875 $15,600
R*******n
发帖数: 428
42
来自主题: Badminton版 - 伪币
> i *think* most people would say that xia xuanze, zhang ning,
> wang yihan, are all players with not so much gift but trained
> really hard.i would also name all french open winners whose
> name is not nadal as giftless.
My original claim was "ordinary people cannot be trained to reach Lin Dan's
level". I gave two definition of ordinary people, the first one was 99.99%,
the second one was 1 or 2 standard deviation, may be even 3 standard
definition. The two definition are compatible.All the pe... 阅读全帖
x*7
发帖数: 11281
43
powder valley
http://www.powdervalleyinc.com/
CCI #500 SMALL PISTOL PRIMERS (1000) Yes $26.00
WIN SMALL PISTOL PRIMERS (1000) Yes $26.00
FED GM100M SMALL PISTOL MATCH PRIMERS (1000) Yes $30.00
hitech
http://www.hi-techammo.com/hitech.zkb?root&GENMENU68&object-men
1000 - Federal #100 Std. Small Pistol Primers
$29.00
1000 - Federal #100 Std. Small Pistol Primers
5000 - Federal #100 Std. Small Pistol Primers
$135.00
5000 - Federal #100 Std. Small Pistol Primers

50... 阅读全帖
g**u
发帖数: 13
44
哪里有download MudLIB ?? (for BSD 或是LINUX的都可.. ) 如果不方便的话,也可以mail告诉我的说。
下面是log
% cat debug.log
----------------------------------------------------------------------------
风云三(本地) (MudOS v21.7) starting up on FreeBSD - Sat Mar 27 21:10:05 1999
Connected to address server on localhost port 9990
Loading preloaded files ...
错误讯息被拦截:
执行时段错误:*Error in loading object '/adm/daemons/emoted'
程式:adm/obj/master.c 第 96 行
物件: /adm/obj/master
呼叫来自:adm/obj/master.c 的 preload() 第 96 行,物件: adm/obj/master
呼叫来自:adm/... 阅读全帖
k*******f
发帖数: 438
45
来自主题: MusicPlayer版 - Ain't Gone 'n' Give Up On Love - solo
sig和普通的am std区别:
- sig的琴桥是左手琴桥,tremolo bar在左边。copy的srv number one
- sig的指板是pau ferro的
- sig的body是2pc而不是am std的3pc,虽然其实我从理论上更喜欢3pc
- sig的pu是texas special
- sig的tuner是vintage tuner
- sig的neck更厚
- sig的fret是narrow and tall,而am std一般都是jumbo了
- sig的nut弦高明显高于am std
- sig是vintage truss rod,要把neck拆下来在底部调truss rod
s********y
发帖数: 145
46
别的观点都还ok, 不过外发的女人不一定比不外发的女人得std的机率高,std体检很容
查出来,看了体检报告不就清楚了。国男也不一定没有std, 倒是整天泡mitbbs sex和
momo的国男才危险,随便在网上跟陌生人yp比外发染上std的风险大多了。美女当然会
被高素质国男包围,但高素质跟高性能力不划等号,国男要敢于面对性能力方面的现实
,不要因为缺乏自信才攻击别人就对了。凡事还是不要一杆子打翻一船人。
首页 上页 1 2 3 4 5 6 7 8 9 10 (共10页)