小编Nit*_*eti的帖子

基本的Python数字!

为什么0.1 + 0.1 + 0.1 - 0.35.5511151231257827e-17在Python 中进行求值 ?

python floating-point core

1
推荐指数
2
解决办法
709
查看次数

ruby中的数据结构只存储独特的元素?

我想在Ruby中使用一个数据结构,它只存储一次字符串,并在下次尝试将其放入时拒绝它(类似于'SET').实现需要最有效(例如,比数组中的线性搜索更好).

此外,我尝试使用Hash,但是具有相同值的多个字符串(我从一些现有字符串的切片操作得到的这些字符串)进入Hash,似乎正在计算它们的不同哈希值.

什么是最好和最有效的出路?我不想使用红宝石宝石.我正在研究一个在线评判的拼图解决方案,我只能提交自己的代码.

这是我写的代码片段:

for string in @string_store do
  for c in 0...string.length
    index_to_sum=0
    while c+index_to_sum<string.length do
      substring=string[c..(c+index_to_sum)]         
      unless @hash_store[substring]=='X'
        @hash_store[substring]='X'
      end
      index_to_sum+=1
    end
  end
end   
Run Code Online (Sandbox Code Playgroud)

ruby set data-structures

1
推荐指数
1
解决办法
1264
查看次数

javascript/nodejs中的功能思维

这些天我是关于javascript中的功能性思考的新手.我的背景主要是Java/Ruby中的OOP.

假设我想在节点中获取用户输入,我可以这样做:

process.stdin.resume();
process.stdin.setEncoding("ascii");
var input_buffer = "";

process.stdin.on("data", function (input) {
  input_buffer += input;
});

function process_input()
{
  // Process input_buffer here.
  do_something_else();
}

function do_something_else()
{

}
process.stdin.on("end",process_input);
Run Code Online (Sandbox Code Playgroud)

我在这里保持明确的状态.实现同样的功能是什么?

javascript functional-programming node.js

0
推荐指数
1
解决办法
1264
查看次数

Java对象平等

两张卡片c1和c4似乎相等......但它们不是原因.我希望它们相等,以便在Set中只允许其中一个.:|

import java.util.*;
class Card2
{
 private int value;
 private String type;

 public Card2(int v,String t)
 {
  value=v;
  type=t;
 }

 public int getValue()
 {
  return value;
 }

 public String getType()
 {
  return type;
 }

 public String toString()
 {
  return(type+" "+value);
 }

 public boolean equals(Object oo)
 {
  if(!(oo instanceof Card))
  return false;

  Card cc=(Card) oo;

  if(this.getValue()==cc.getValue() && this.getType().equals(cc.getType()))
  return true;
  else
  return false;
 }

 public int hashCode()
 {
  return value;
 }

 public static void main(String args[])
 {
  HashSet<Card> deck=new HashSet<Card>();

  Card …
Run Code Online (Sandbox Code Playgroud)

java equality data-structures

-2
推荐指数
1
解决办法
3340
查看次数