Idiomatic way to do list/dict in Cython?

后端 未结 6 2170
别那么骄傲
别那么骄傲 2020-12-23 17:00

My problem: I\'ve found that processing large data sets with raw C++ using the STL map and vector can often be considerably faster (and with lower memory footprint) than usi

6条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-23 17:11

    You can take a look at the standard array module for Python if this is appropriate for your Cython setting. I'm not sure since I have never used Cython.

提交回复
热议问题